summaryrefslogtreecommitdiff
path: root/artima/python/example2.py
blob: a29b0807427124192cb233d021328b0db07e88e2 (plain)
1
2
3
4
5
6
7
8
9
def main():
    print 'called main()'

def test():
    print 'called test()'
     
if __name__ == '__main__':
    # test()
    main() # comment this and uncomment test() during development