Skip to content

Instantly share code, notes, and snippets.

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