JanetDocsPlaygroundI'm feeling luckyGitHub sign in
(defn output [x] (case x :a "a" "b")) (output :a) # => "a" (output "anything else") # => "b"