changeset 0:ec34e65015d9

initial commit
author root@localhost
date Tue, 15 Oct 2013 16:19:00 +0000
parents
children ad2f9d09081c
files README helloworld.py
diffstat 2 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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
+
--- /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()
+