Closed Sp3000 closed 8 years ago
Version: 0.3.0
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`
Proper outputs of true/false.
true
false
Should empty strings be falsy? What about empty arrays?
Fixed in 365d33df5362ad5c768902ac0d2924ff92dff8b2
Version: 0.3.0
Problem
Desired Behavior
Proper outputs of
true
/false
.