summaryrefslogtreecommitdiff
path: root/cesar/lib/python/test/pyhello/py/test_hello.py
blob: ebdacc336efd1c0cc097b64743555337a492a6b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! usr/bin/env python

print __name__

import sys
sys.path.append('./obj')
sys.path.append('../obj')

import hello

print hello.greet ("Tintin", "Belgium")

h = hello.hello ("France")
print h.greet ()
print h.invite ()