[#24] New language: Gnuplot

This commit is contained in:
Radon Rosborough 2020-09-28 20:11:53 -07:00
parent cc78f49a13
commit 6d230c2e11
2 changed files with 16 additions and 0 deletions

View File

@ -1256,6 +1256,19 @@ int main() {
code: `x = 123 * 234`,
},
template: `print("Hello, world!")
`,
},
gnuplot: {
name: "Gnuplot",
repl: "gnuplot",
input: `print 123 * 234`,
main: "main.gnuplot",
run: "gnuplot main.gnuplot -",
scope: {
code: `x = 123 * 234`,
input: `print x`,
},
template: `print "Hello, world!"
`,
},
go: {

View File

@ -63,6 +63,9 @@ golang
# Groovy
groovy
# Gnuplot
gnuplot
# Hack
hhvm