add initial (preliminary) support for configuration files
[PyX/mjg.git] / examples / hello.py
blob487198f0ca8b93e72003fe873464898a8ec77d3e
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.writetofile("hello")