From: root Date: Tue, 15 Oct 2013 16:18:53 +0000 (+0000) Subject: initial commit X-Git-Url: http://cvs.surbana.tech/git/?a=commitdiff_plain;h=0595bd438245d1d489f1e2ebdefbc2733b5e0fb2;p=helloworld.git initial commit --- 0595bd438245d1d489f1e2ebdefbc2733b5e0fb2 diff --git a/README b/README new file mode 100644 index 0000000..244b885 --- /dev/null +++ b/README @@ -0,0 +1,2 @@ +This is a hello world example python script + diff --git a/helloworld.py b/helloworld.py new file mode 100755 index 0000000..f0dc9af --- /dev/null +++ b/helloworld.py @@ -0,0 +1,8 @@ +#!/usr/bin/python + +def main(): + print "hello wordl" + +if __name__ == "__main__": + main() +