[pypy-dev] How to compile a file with rpython

M A teammember0x01 at gmail.com
Sun Nov 21 14:16:51 EST 2021


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?


More information about the pypy-dev mailing list