py2cpp
py2cpp copied to clipboard
A Python to C++ compiler.
``` Traceback (most recent call last): File "C:\Users\Alex_PC\AppData\Local\Programs\Python\Python38\lib\runpy.py", line 193, in _run_module_as_main return _run_code(code, main_globals, None, File "C:\Users\Alex_PC\AppData\Local\Programs\Python\Python38\lib\runpy.py", line 86, in _run_code exec(code, run_globals) File "d:\myfiles\src\py2cpp\py2cpp\__main__.py", line 40, in sys.exit(main(sys.argv[1:]))...
Is py2cpp able to compile Python without type hints? It seems that it would be possible to take a function like this: ``` def subtract(a,b) return a - b ```...