Skip to content

Instantly share code, notes, and snippets.

@AlexanderBrevigSublime
Created October 1, 2012 09:51
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