[#24] New language: Yorick
This commit is contained in:
parent
647366a8ae
commit
f6de928cf3
|
@ -3029,6 +3029,20 @@ message:
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
template: `output: "Hello, world!"
|
template: `output: "Hello, world!"
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
yorick: {
|
||||||
|
name: "Yorick",
|
||||||
|
repl: "rlwrap yorick",
|
||||||
|
main: "main.i",
|
||||||
|
run: `echo "Type '#include \\"main.i\\"' to run the code." && rlwrap yorick`,
|
||||||
|
helloInput: `#include "main.i"`,
|
||||||
|
scope: {
|
||||||
|
code: `x = 123 * 234`,
|
||||||
|
input: `#include "main.i"
|
||||||
|
x`,
|
||||||
|
},
|
||||||
|
template: `write, "Hello, world!"
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
zot: {
|
zot: {
|
||||||
|
|
|
@ -87,6 +87,10 @@ xsltproc
|
||||||
# YAML
|
# YAML
|
||||||
jq
|
jq
|
||||||
|
|
||||||
|
# Yorick
|
||||||
|
rlwrap
|
||||||
|
yorick
|
||||||
|
|
||||||
# Zot
|
# Zot
|
||||||
qt5-qmake
|
qt5-qmake
|
||||||
qtscript5-dev
|
qtscript5-dev
|
||||||
|
|
Loading…
Reference in New Issue