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