comparison: Examples/hallo.py
Examples/hallo.py
- changeset 0
- de9c2efb9d02
- child 12
- 1d8dd9706f46
equal
deleted
inserted
replaced
|
1 #!/usr/bin/env python |
|
2 |
|
3 import sys |
|
4 |
|
5 def main(): |
|
6 print "Hello World!" |
|
7 sys.exit(0) |
|
8 |
|
9 if __name__ == "__main__": |
|
10 main() |