summaryrefslogtreecommitdiffstats
path: root/languages/python/app_templates/pythonhello/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'languages/python/app_templates/pythonhello/app.py')
-rw-r--r--languages/python/app_templates/pythonhello/app.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/languages/python/app_templates/pythonhello/app.py b/languages/python/app_templates/pythonhello/app.py
new file mode 100644
index 00000000..3257ce62
--- /dev/null
+++ b/languages/python/app_templates/pythonhello/app.py
@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+
+def main():
+ print 'Hello world!'
+
+main()
+