Skip to content

Instantly share code, notes, and snippets.

@AlexanderBrevigSublime
Created October 1, 2012 09:51
Show Gist options
  • Save AlexanderBrevigSublime/3810617 to your computer and use it in GitHub Desktop.
Save AlexanderBrevigSublime/3810617 to your computer and use it in GitHub Desktop.
Python: Minimal safe module
#!/usr/bin/python
import sys
def main():
print 'Hello there', sys.argv[1]
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment