Prepare for Github,
[pylit.git] / doc / tutorial / hello_multifile.py
blobe06044501450ae9d7881411ec581f2803498e7b8
1 # The classical programming example with the greeting from a variable in
2 # another file::
4 import greeting
5 print greeting.greeting
7 # Where ``greeting.py`` contains:
8 #
9 # .. include:: greeting.py.txt