JanetDocsSourcePlaygroundTutorialsI'm Feeling luckyCommunityGitHub sign in
# Match enables polymorphic functions: (defn fac [& vars] (match vars [0] 1 [x] (* x (fac (- x 1)))))