1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
(in-module "clojure") (defn f0 ()) (defn f1 (x) x) (defn f2 (x y) y) (defn f5 (a b c d e) (d e) (f1 a)) (defn* f01 (()) ((x) x)) (defn fa (x) (.foo x)) (defn fk (x) (:foo x)) (defn fr (a b & c) c)