ds26gte / pyret-lang

The Pyret language.
Other
2 stars 0 forks source link

Nested boolean binops don't translate correctly #15

Closed schanzer closed 8 years ago

schanzer commented 8 years ago

(and (and true false) true) works perfectly, but (or (and true false) true) generates the following error: Cannot mix binary operators of different types:orandand. Use parentheses to disambiguate.

ds26gte commented 8 years ago

Fixed in ds26gte/code.pyret.org@e1fc3b6.

schanzer commented 8 years ago

Confirmed fixed!