JanetDocsPlaygroundI'm feeling luckyGitHub sign in
(defn f1 [s] (string "-" s "-")) (defn f2 [s] (string "=" s "=")) (defn f3 [s] (string "#" s "#")) (def f (juxt f1 f2 f3)) (f "x") # => ("-x-" "=x=" "#x#")