[#24] New language: GAP

This commit is contained in:
Radon Rosborough 2020-09-28 19:52:29 -07:00
parent b873667c34
commit f52d795a12
2 changed files with 16 additions and 0 deletions

View File

@ -1217,6 +1217,19 @@ int main() {
main: "main.gbs",
run: "gbs3 main.gbs",
template: `Print "Hello, world!"
`,
},
gap: {
name: "GAP",
repl: "gap",
input: `123 * 234;`,
main: "main.gap",
run: "gap main.gap",
scope: {
code: `x := 123 * 234;`,
input: `123 * 234;`,
},
template: `Print("Hello, world!\\n");
`,
},
go: {

View File

@ -48,6 +48,9 @@ gforth
# Gambas
gambas3-script
# GAP
gap
# Go
golang