Skip to content

Instantly share code, notes, and snippets.

@jsjoeio
Created July 28, 2020 20:42
Show Gist options
  • Save jsjoeio/693a9da25fe62f6cb3c474eb93eac92a to your computer and use it in GitHub Desktop.
Save jsjoeio/693a9da25fe62f6cb3c474eb93eac92a to your computer and use it in GitHub Desktop.
(defn big
"tells you whether or not the string is bigger than n"
[st, n]
(if (> (int (count st)) n) "That's a big string!" "That's a small string")
)
@laurosilvacom
Copy link

🙌

@doingandlearning
Copy link

Nice! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment