Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/001-helloworld/example.py
blob: ab125d4e2b145f5428f3ae2ca17a32b82a28daf5 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/python


def main():
    print 'Hello world!'

if __name__ == "__main__":
    main()