JanetDocs
Playground
I'm feeling lucky
GitHub sign in
Run
Format
(let [x 10] (unless (= x 10) (print "x is not 10!") ) ) # => nil (let [x 5] (unless (= x 10) (print "x is not 10!") ) ) # => "x is not 10!"