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

2021-11-22 Thread Matti Picus
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

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

2021-11-22 Thread M A
> 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()

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

2021-11-21 Thread Matti Picus
On 21/11/21 9:16 pm, 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() How would I turn it into an executable file using rpython? The canonical starting

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

2021-11-21 Thread M A
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