# HG changeset patch # User root@localhost # Date 1381853982 0 # Node ID 0ba69df2337d6d939250e69636489d5976e3a5c0 initial commit diff -r 000000000000 -r 0ba69df2337d README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Tue Oct 15 16:19:42 2013 +0000 @@ -0,0 +1,2 @@ +This is a hello world example python script + diff -r 000000000000 -r 0ba69df2337d helloworld.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/helloworld.py Tue Oct 15 16:19:42 2013 +0000 @@ -0,0 +1,8 @@ +#!/usr/bin/python + +def main(): + print "hello wordl" + +if __name__ == "__main__": + main() +