helloworld

annotate helloworld.py @ 0:36a61c4df514

initial commit
author root@localhost
date Sat Aug 11 04:53:13 2012 +0000 (2012-08-11)
parents
children 00eeb3a50d42
rev   line source
root@0 1 #!/usr/bin/python
root@0 2
root@0 3 def main():
root@0 4 print "hello wordl"
root@0 5
root@0 6 if __name__ == "__main__":
root@0 7 main()
root@0 8