[#24] New language: GDB

This commit is contained in:
Radon Rosborough 2020-09-28 19:56:43 -07:00
parent f52d795a12
commit 779de3a017
2 changed files with 16 additions and 0 deletions

View File

@ -1230,6 +1230,19 @@ int main() {
input: `123 * 234;`,
},
template: `Print("Hello, world!\\n");
`,
},
gdb: {
name: "GDB",
repl: "gdb",
input: "p 123 * 234",
main: "main.gdb",
run: "gdb -x main.gdb",
scope: {
code: `set $x = 123 * 234`,
input: `p $x`,
},
template: `p "Hello, world!"
`,
},
go: {

View File

@ -51,6 +51,9 @@ gambas3-script
# GAP
gap
# GDB
gdb
# Go
golang