view helloworld.py @ 1:ad2f9d09081c

fixed typo
author root@localhost
date Tue, 15 Oct 2013 16:19:02 +0000
parents ec34e65015d9
children
line wrap: on
line source
#!/usr/bin/python

def main():
    print "hello world"

if __name__ == "__main__":
    main()