How to compile a file with rpython

M A <[email protected]> Sun, 21 Nov 2021 14:16:51 -0500
Newsgroups gmane.comp.python.pypy
Message-ID <[email protected]>
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?