wisp-lang / wisp

A little Clojure-like LISP in JavaScript
https://gozala.github.io/wisp/
Other
982 stars 68 forks source link

True is true but false isn't false? #130

Closed robjens closed 9 years ago

robjens commented 9 years ago
(print (true? true)) ;=> true
(print (false? false)) ;=> false

Shouldn't that second one return true as well? I'm confused...