6 lines
82 B
Clojure
6 lines
82 B
Clojure
|
|
(defn one []
|
||
|
|
"Function that takes no arguments and returns 1"
|
||
|
|
1)
|
||
|
|
|
||
|
|
(one); => 1
|