Release 0.8.0
[pylit.git] / doc / tutorial / hello_multifile.py
blob4f9ec1ded6ada07426a21a7f80c9154bd27b6b5a
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:
9 # .. include:: greeting.py.txt