Skip to content

Instantly share code, notes, and snippets.

@duanebester
Created September 25, 2020 17:08
Show Gist options
  • Save duanebester/92125f960d16ac9bf64d692232d989fd to your computer and use it in GitHub Desktop.
Save duanebester/92125f960d16ac9bf64d692232d989fd to your computer and use it in GitHub Desktop.
GitHub Repos Basic Loop Value
(def x (loop [i 0]
(println (str "i = " i))
(if (< i 5)
(recur (inc i))
i)))
(println x) ; => 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment