changeset 0:36a61c4df514
initial commit
author |
root@localhost |
date |
Sat Aug 11 04:53:13 2012 +0000 (2012-08-11) |
parents |
|
children |
00eeb3a50d42 |
files |
README helloworld.py |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/README Sat Aug 11 04:53:13 2012 +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 Sat Aug 11 04:53:13 2012 +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 +