[#24] New language: Gnuplot
This commit is contained in:
parent
cc78f49a13
commit
6d230c2e11
|
@ -1256,6 +1256,19 @@ int main() {
|
||||||
code: `x = 123 * 234`,
|
code: `x = 123 * 234`,
|
||||||
},
|
},
|
||||||
template: `print("Hello, world!")
|
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: {
|
go: {
|
||||||
|
|
|
@ -63,6 +63,9 @@ golang
|
||||||
# Groovy
|
# Groovy
|
||||||
groovy
|
groovy
|
||||||
|
|
||||||
|
# Gnuplot
|
||||||
|
gnuplot
|
||||||
|
|
||||||
# Hack
|
# Hack
|
||||||
hhvm
|
hhvm
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue