add new deco.py test case
[PyX/mjg.git] / examples / hello.py
blob40f8401384501e7ced78c626bcc9e47ca1f34545
1 from pyx import *
3 c = canvas.canvas()
4 c.text(0, 0, "Hello, world!")
5 c.stroke(path.line(0, 0, 2, 0))
6 c.writeEPSfile("hello")