On 22/11/21 7:06 pm, M A wrote:
On Nov 22, 2021, at 1:08 AM, Dan Stromberg wrote:
Why do you desire an executable?
Last I heard, a program would perform well on Pypy's JIT, and that using
rpython was almost always unnecessary.
If you need an executable, you could also try Cython or N
> On Nov 22, 2021, at 1:08 AM, Dan Stromberg wrote:
>
>
> On Sun, Nov 21, 2021 at 11:17 AM M A wrote:
> 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()