cheddar-lang / Cheddar

🧀 Cheddar, the language that works for you
cheddar.vihan.org
Apache License 2.0
28 stars 9 forks source link

! fails for non-integers #49

Closed Sp3000 closed 8 years ago

Sp3000 commented 8 years ago

Version: 0.3.0

Problem

cheddar> !1
 false
cheddar> !0
 true
cheddar> !true
 `!` has no behavior for types `nil` and `Boolean`
cheddar> !false
 `!` has no behavior for types `nil` and `Boolean`
cheddar> !"abc"
 `!` has no behavior for types `nil` and `String`

Desired Behavior

Proper outputs of true/false.

vihanb commented 8 years ago

Should empty strings be falsy? What about empty arrays?

vihanb commented 8 years ago

Fixed in 365d33df5362ad5c768902ac0d2924ff92dff8b2