ds26gte / pyret-lang

The Pyret language.
Other
2 stars 0 forks source link

Problems with multi-def (local...) #11

Closed schanzer closed 8 years ago

schanzer commented 8 years ago

(local [(define x 1)] 2) works just fine

(local [(define x 1) (define y 2)] 3) results in: An unexpected error occurred: TypeError: Cannot read property 'name' of undefined

ds26gte commented 8 years ago

Fixed in 0daaca2 and ds26gte/code.pyret.org@56b4926.

schanzer commented 8 years ago

Confirmed fixed!