I've written a transpiler in python which works well with PyPy. Now I'm thinking to speed up more my existing code base with cython.
Will Using Cython with pypy increase or decrease the performance?
I'm using PyPy 3.9 and here's my code https://github.com/ad1b003/Ethan-A-Programming-Language
Cython should mostly work with PyPy.
As with all performance questions, the key is to test it, however:
A quick look at your GitHub repository suggests it's mostly the former, so I would not expect a benefit.