comparison helloworld.py @ 1:ad2f9d09081c

fixed typo
author root@localhost
date Tue, 15 Oct 2013 16:19:02 +0000
parents ec34e65015d9
children
comparison
equal deleted inserted replaced
0:ec34e65015d9 1:ad2f9d09081c
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 def main(): 3 def main():
4 print "hello wordl" 4 print "hello world"
5 5
6 if __name__ == "__main__": 6 if __name__ == "__main__":
7 main() 7 main()
8 8