Closed Real-Gecko closed 1 month ago
Code:
from luaparser import ast source = """ result = (a + b) / (c + d) """ tree = ast.parse(source) print(ast.to_lua_source(tree))
Output:
result = a + b / c + d
Seems ok on master
Great, thanks
Code:
Output: