How do I make a program using rpython? Say I have this file:
def main():
for i in range(100):
print("hello world"),
if __name__ == "__main__":
main()
How would I turn it into an executable file using rpython?
_______________________________________________
pypy-dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-dev
