selftiesoftware/runic-lang

Test consecutive calculations

Closed this issue · 1 comments

Jegp commented

Test that consecutive calculations are made correctly.

Examples:

x + 10 - 10
x + (10 - 10)
x + (10 - (10))
Jegp commented

Fixed by recursive parsing when evaluating function calls without parenthesis.