helloworld

view helloworld.py @ 1:00eeb3a50d42

fixed typo
author root@localhost
date Sat Aug 11 04:53:15 2012 +0000 (2012-08-11)
parents 36a61c4df514
children
line source
1 #!/usr/bin/python
3 def main():
4 print "hello world"
6 if __name__ == "__main__":
7 main()