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
...and generate a C++ function like this, using auto to infer the types:
auto subtract(auto a, auto b){
return a - b;
}
Is py2cpp able to compile Python without type hints?
It seems that it would be possible to take a function like this:
...and generate a C++ function like this, using
autoto infer the types: