aboutsummaryrefslogtreecommitdiff
path: root/esempi/hello.py
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <elena.valhalla@gmail.com>2012-03-26 12:26:22 +0200
committerElena ``of Valhalla'' Grandi <elena.valhalla@gmail.com>2012-03-26 12:27:04 +0200
commit3e6038ea5f23d4fd22d42f5561092d4dc17d387f (patch)
treebc2c336c411f1b8452e27893cdbeab09c8f56d1f /esempi/hello.py
parent2eda3ec72301ddfbc22c336978250798ce9fd605 (diff)
Codice sorgente
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()