# HG changeset patch # User root@localhost # Date 1344660793 0 # Node ID 36a61c4df5141785cff57206af7887a552cd269a initial commit diff -r 000000000000 -r 36a61c4df514 README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Sat Aug 11 04:53:13 2012 +0000 @@ -0,0 +1,2 @@ +This is a hello world example python script + diff -r 000000000000 -r 36a61c4df514 helloworld.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/helloworld.py Sat Aug 11 04:53:13 2012 +0000 @@ -0,0 +1,8 @@ +#!/usr/bin/python + +def main(): + print "hello wordl" + +if __name__ == "__main__": + main() +