From: root Date: Sun, 19 Dec 2010 17:49:02 +0000 (+0000) Subject: initial commit X-Git-Url: http://54.37.36.48/git/?a=commitdiff_plain;h=26c18d74f8416d5f78859d722b35f696c83f4eed;p=helloworld.git initial commit --- 26c18d74f8416d5f78859d722b35f696c83f4eed 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() +