diff options
Diffstat (limited to 'clojure/big.clj')
-rw-r--r-- | clojure/big.clj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clojure/big.clj b/clojure/big.clj new file mode 100644 index 0000000..45fbd85 --- /dev/null +++ b/clojure/big.clj @@ -0,0 +1,5 @@ +(defn big [st n] (> (count st) n)) + +(println (big "waka" 3)) +(println (big "waa" 3)) +(println (big "waka" 4)) |