plot demo

This commit is contained in:
Vitor Santos Costa 2016-08-22 17:03:41 -05:00
parent eea3da22f1
commit fce05b85d3

View File

@ -0,0 +1,12 @@
:- [library(python)].
main :-
Plt = matplotlib.pyplot,
:= import( Plt ),
:= (
Plt.plot([1,2,3,4]),
Plt.ylabel(`some numbers`),
Plt.show()
).