JanetDocsPlaygroundI'm feeling luckyGitHub sign in
(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!"