Add a second file to the test directory

remove_eq_on_syntax
Wilfred Hughes 2022-04-24 20:13:17 +07:00
parent b2320b29d5
commit a9af73d944
2 changed files with 16 additions and 0 deletions

@ -0,0 +1,8 @@
;; Example from Autochrome, under EPL-1.0 license.
(defn example
[x]
"Does stuff."
(-> {:more (inc x)
:less (dec x)}
(assoc :twice (+ x x))))

@ -0,0 +1,8 @@
;; Example from Autochrome, under EPL-1.0 license.
(defn example
[x]
"Does stuff."
(println "hello!")
{:more (inc x)
:less (dec x)})