alcides / aeon

Aeon programming language
https://alcides.github.io/aeon/
8 stars 3 forks source link

Operator precedence support #47

Open eduardo-imadeira opened 5 months ago

eduardo-imadeira commented 5 months ago

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 ;