helloworld

annotate helloworld.py @ 1:00eeb3a50d42

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