We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This operator is a pattern-matching conditional.
(fun foo (x) (case x (0) 'foo (1) 'bar (2 5) (+ x x x) default: (* x x))) (foo 0) -> 'foo (foo 1) -> 'bar (foo 2) -> 6 (foo 4) -> 16 (foo 5) -> 15