[#24] New language: Squirrel

This commit is contained in:
Radon Rosborough 2020-09-26 10:23:29 -07:00
parent da9606394e
commit d70c916190
2 changed files with 13 additions and 0 deletions

View File

@ -2435,6 +2435,16 @@ END
`,
skip: ["lsp"],
},
squirrel: {
aliases: ["nut", "cnut"],
name: "Squirrel",
repl: "squirrel",
input: `print(123 * 234)`,
main: "main.nut",
run: "squirrel main.nut; squirrel",
template: `print("Hello, world!\\n")
`
},
standardml: {
aliases: ["sml", "ml"],
name: "Standard ML",

View File

@ -39,6 +39,9 @@ m4
# SQLite
sqlite
# Squirrel
squirrel3
# Standard ML
rlwrap
smlnj