[#24] New language: GEL

This commit is contained in:
Radon Rosborough 2020-09-28 20:03:31 -07:00
parent 779de3a017
commit cc78f49a13
2 changed files with 16 additions and 0 deletions

View File

@ -1243,6 +1243,19 @@ int main() {
input: `p $x`,
},
template: `p "Hello, world!"
`,
},
gel: {
aliases: ["genius"],
name: "GEL",
repl: "genius",
main: ".geniusinit",
createEmpty: ``,
run: "genius",
scope: {
code: `x = 123 * 234`,
},
template: `print("Hello, world!")
`,
},
go: {

View File

@ -54,6 +54,9 @@ gap
# GDB
gdb
# GEL
genius
# Go
golang