JanetDocs
Source
Playground
Tutorials
I'm Feeling lucky
Community
GitHub sign in
Run
Format
# Match enables polymorphic functions: (defn fac [& vars] (match vars [0] 1 [x] (* x (fac (- x 1)))))