helloworld

view helloworld.py @ 1:6f2dbfdbc599

fixed typo
author root@localhost
date Tue, 15 Oct 2013 16:19:45 +0000
parents 0ba69df2337d
children
line source
1 #!/usr/bin/python
3 def main():
4 print "hello world"
6 if __name__ == "__main__":
7 main()