[#24] New language: S-Lang

This commit is contained in:
Radon Rosborough 2020-09-26 07:59:09 -07:00
parent 64d25f5510
commit da9606394e
2 changed files with 19 additions and 0 deletions

View File

@ -2225,6 +2225,9 @@ binding_irb.run(IRB.conf)
repl: "scilab-cli",
main: "main.sci",
run: "scilab-cli -f main.sci",
scope: {
code: `x = 123 * 234`,
},
template: `disp("Hello, world!")
`,
skip: ["repl", "runrepl"],
@ -2383,6 +2386,19 @@ Ophelia:
`,
timeout: 15,
},
slang: {
aliases: ["s", "sl"],
name: "S-Lang",
repl: "slsh",
input: "123 * 234;",
main: "main.sl",
run: "slsh -i main.sl",
scope: {
code: "x = 123 * 234;",
},
template: `message("Hello, world!");
`
},
smalltalk: {
aliases: ["gst", "st"],
name: "Smalltalk",

View File

@ -12,6 +12,9 @@ liblua_name="$(grep-aptavail -eF Package "liblua[0-9.]+-dev" -a -XF Version "${l
packages="
# S-Lang
slsh
# Scala
scala