Operator precedence support #47
Labels
bug
Something isn't working
good first issue
Good for newcomers
help wanted
Extra attention is needed
We would like to be able to support operator precedence like this:
x: Int = 12 - 1 * 5 ;
currently to support this we have to do it like this, due to some grammar limitations:
x: Int = (12 - 1) * 5 ;
The text was updated successfully, but these errors were encountered: