Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1 @@
(declare foo)

View file

@ -0,0 +1 @@
(def foo (atom 42))

View file

@ -0,0 +1 @@
(def bar (ref 42))

View file

@ -0,0 +1 @@
(def baz (agent 42))

View file

@ -0,0 +1 @@
(def bar)

View file

@ -0,0 +1 @@
(def foo 42)

View file

@ -0,0 +1 @@
(defonce bar 42)

View file

@ -0,0 +1 @@
(defn baz [x] 42)

View file

@ -0,0 +1 @@
(defmacro qux [x] 42)

View file

@ -0,0 +1 @@
(let [foo 42] ...)

View file

@ -0,0 +1,2 @@
(def ^:dynamic foo 10)
(binding [foo 20] ...)

View file

@ -0,0 +1,2 @@
(defn len [^String x]
(.length x))