py2v
py2v copied to clipboard
Something wrong with converting input() in python to os.input() in V
used py code
inp = input(">> ")
print(inp)
and got output v
mut inp := input('>> ')
println(inp)
"input()" in output should be os.input()
6871261 partially addresses this although the variable is still incorrectly marked as mutable.
That's ok, all variables in python are mutable anyway. I'm using for a python to c exe at Ccode-lang/py-compiler.
Can't wait to see the fully functional version of this software!