[#24] New language: GAP
This commit is contained in:
parent
b873667c34
commit
f52d795a12
|
@ -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: {
|
||||
|
|
|
@ -48,6 +48,9 @@ gforth
|
|||
# Gambas
|
||||
gambas3-script
|
||||
|
||||
# GAP
|
||||
gap
|
||||
|
||||
# Go
|
||||
golang
|
||||
|
||||
|
|
Loading…
Reference in New Issue