riju/langs/gnuplot.yaml

25 lines
261 B
YAML

id: "gnuplot"
name: "Gnuplot"
install:
apt:
- gnuplot-nox
repl: |
gnuplot
input: |
print 123 * 234
main: "main.gnuplot"
template: |
print "Hello, world!"
run: |
gnuplot main.gnuplot -
scope:
code: |
x = 123 * 234
input: |
print x