Prepare for Github,
[pylit.git] / doc / tutorial / hello_with_doctest.py
blob6ce925fe693d2fb9aabcf38a444258a7ea7074ea
1 # The classical programming example in Python will print a familiar greeting:
2 #
3 # >>> execfile("hello_with_doctest.py")
4 # Hello world
5 #
6 # ::
8 print "Hello world."