changeset 0:0ba69df2337d
initial commit
author |
root@localhost |
date |
Tue, 15 Oct 2013 16:19:42 +0000 |
parents |
|
children |
6f2dbfdbc599 |
files |
README helloworld.py |
diffstat |
2 files changed, 10 insertions(+), 0 deletions(-)
[+]
|
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/README Tue Oct 15 16:19:42 2013 +0000
1.3 @@ -0,0 +1,2 @@
1.4 +This is a hello world example python script
1.5 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2.2 +++ b/helloworld.py Tue Oct 15 16:19:42 2013 +0000
2.3 @@ -0,0 +1,8 @@
2.4 +#!/usr/bin/python
2.5 +
2.6 +def main():
2.7 + print "hello wordl"
2.8 +
2.9 +if __name__ == "__main__":
2.10 + main()
2.11 +