A real python compiler!
For now it only supports a small amount of the syntax.
This compiler compiles python directly to C, which then gets compiled to a native executable(which means its much MUCH faster than normal python).
Only variables, if statements and function calls are implemented right now.
Currently I just have it running a small program that tells you if two numbers add up to a target number
Cool! Isn't this just creating your own language with a Python syntax?
A real python compiler!
For now it only supports a small amount of the syntax.
This compiler compiles python directly to C, which then gets compiled to a native executable(which means its much MUCH faster than normal python).
Only variables, if statements and function calls are implemented right now.
Currently I just have it running a small program that tells you if two numbers add up to a target number
Cool! Isn't this just creating your own language with a Python syntax?