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