[#24] New language: GAP
This commit is contained in:
parent
b873667c34
commit
f52d795a12
|
@ -1217,6 +1217,19 @@ int main() {
|
||||||
main: "main.gbs",
|
main: "main.gbs",
|
||||||
run: "gbs3 main.gbs",
|
run: "gbs3 main.gbs",
|
||||||
template: `Print "Hello, world!"
|
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: {
|
go: {
|
||||||
|
|
|
@ -48,6 +48,9 @@ gforth
|
||||||
# Gambas
|
# Gambas
|
||||||
gambas3-script
|
gambas3-script
|
||||||
|
|
||||||
|
# GAP
|
||||||
|
gap
|
||||||
|
|
||||||
# Go
|
# Go
|
||||||
golang
|
golang
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue