mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 10:57:50 +08:00
10 lines
115 B
Go
10 lines
115 B
Go
package eval
|
|
|
|
var builtinModules = map[string]string{
|
|
"acme": `fn acme {
|
|
echo 'So this'
|
|
put works.
|
|
}
|
|
`,
|
|
}
|