diff options
Diffstat (limited to 'languages/python/app_templates/pythonhello/app.py')
-rw-r--r-- | languages/python/app_templates/pythonhello/app.py | 7 |
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() + |