[#24] New language: Gnuplot
This commit is contained in:
parent
cc78f49a13
commit
6d230c2e11
|
@ -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: {
|
||||
|
|
|
@ -63,6 +63,9 @@ golang
|
|||
# Groovy
|
||||
groovy
|
||||
|
||||
# Gnuplot
|
||||
gnuplot
|
||||
|
||||
# Hack
|
||||
hhvm
|
||||
|
||||
|
|
Loading…
Reference in New Issue