1 2 3 4 5
(defn big [st n] (> (count st) n)) (println (big "waka" 3)) (println (big "waa" 3)) (println (big "waka" 4))