Skip to content

Instantly share code, notes, and snippets.

@colwilson
Created January 19, 2012 17:54
Show Gist options
  • Save colwilson/1641447 to your computer and use it in GitHub Desktop.
Save colwilson/1641447 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import sys
def main ():
print 'Hello world!'
if __name__ == '__main__':
try:
main()
sys.exit(0)
except KeyboardInterrupt, e: # Ctrl-C
raise e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment