aboutsummaryrefslogtreecommitdiff
path: root/esempi/hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'esempi/hello.py')
-rw-r--r--esempi/hello.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/esempi/hello.py b/esempi/hello.py
new file mode 100644
index 0000000..0f2c124
--- /dev/null
+++ b/esempi/hello.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+def main():
+ print "Hello World!"
+
+if __name__ == '__main__': main()