[#24] New language: Nickle

This commit is contained in:
Radon Rosborough 2020-10-02 16:51:12 -07:00
parent 681db59d44
commit 038334f239
2 changed files with 16 additions and 0 deletions

View File

@ -2251,6 +2251,19 @@ message:
compile: "nekoc main.neko",
run: "neko main",
template: `$print("Hello, world!\\n");
`,
},
nickle: {
name: "Nickle",
repl: "nickle",
main: "main.nickle",
run: `nickle main.nickle; echo "Type 'load \\"main.nickle\\"' at the repl prompt to bring variables into scope" >&2; nickle`,
scope: {
code: `x = 123 * 234;`,
input: `load "main.nickle"
x`,
},
template: `printf("Hello, world!\\n");
`,
},
nim: {

View File

@ -31,6 +31,9 @@ mysql-server
# Neko
neko
# Nickle
nickle
# Nim
nim