rzimmerman / kal

A powerful, easy-to-use, and easy-to-read programming language for the future.
http://rzimmerman.github.io/kal
MIT License
394 stars 18 forks source link

Can't chain exponent operators #82

Closed rzimmerman closed 11 years ago

rzimmerman commented 11 years ago
x = 2 ^ 2 ^ 2

Produces

x = Math.pow(2, 2) Math.pow(, 2);