helloworld

view helloworld.py @ 0:36a61c4df514

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