9 lines
118 B
Clojure
9 lines
118 B
Clojure
|
(ns ^{:doc "Top-level module."
|
||
|
:author "William Carroll"}
|
||
|
main)
|
||
|
|
||
|
(declare main)
|
||
|
|
||
|
(defn foo [a b]
|
||
|
(+ a b))
|