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