Created
December 7, 2015 03:59
-
-
Save prologic/3ad3e9be7439b1a9b539 to your computer and use it in GitHub Desktop.
A "Hello World!" written in RPython
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
def main(argv): | |
print "Hello World!" | |
return 0 | |
def target(*args): | |
return main, None | |
if __name__ == "__main__": | |
raise SystemExit(main(sys.argv)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Getting Started