From 26c18d74f8416d5f78859d722b35f696c83f4eed Mon Sep 17 00:00:00 2001 From: root Date: Sun, 19 Dec 2010 17:49:02 +0000 Subject: [PATCH] initial commit --- README | 2 ++ helloworld.py | 8 ++++++++ 2 files changed, 10 insertions(+), 0 deletions(-) create mode 100644 README create mode 100755 helloworld.py 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() + -- 1.7.0.4