Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,10 @@
(defn fs [f s] (map f s))
(defn f1 [x] (* 2 x))
(defn f2 [x] (* x x))
(def fsf1 (partial fs f1))
(def fsf2 (partial fs f2))
(each s [@[0 1 2 3] @[2 4 6 8]]
(printf "Results for array %n." s)
(printf "fsf1: %n." (fsf1 s))
(printf "fsf2: %n." (fsf2 s)))