view helloworld.py @ 0:ec34e65015d9

initial commit
author root@localhost
date Tue, 15 Oct 2013 16:19:00 +0000
parents
children ad2f9d09081c
line wrap: on
line source
#!/usr/bin/python

def main():
    print "hello wordl"

if __name__ == "__main__":
    main()