helloworld

diff helloworld.py @ 0:0ba69df2337d

initial commit
author root@localhost
date Tue, 15 Oct 2013 16:19:42 +0000
parents
children 6f2dbfdbc599
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/helloworld.py	Tue Oct 15 16:19:42 2013 +0000
     1.3 @@ -0,0 +1,8 @@
     1.4 +#!/usr/bin/python
     1.5 +
     1.6 +def main():
     1.7 +    print "hello wordl"
     1.8 +
     1.9 +if __name__ == "__main__":
    1.10 +    main()
    1.11 +