log
graph
tags
branches
changeset
browse
file
latest
diff
annotate
file log
raw
help
helloworld
view helloworld.py @ 0:0ba69df2337d
find changesets by author, revision, files, or words in the commit message
initial commit
author
root@localhost
date
Tue, 15 Oct 2013 16:19:42 +0000
parents
children
6f2dbfdbc599
line source
1
#!/usr/bin/python
2
3
def main():
4
print "hello wordl"
5
6
if __name__ == "__main__":
7
main()
8