Skip to content

Instantly share code, notes, and snippets.

@LVMBDV
Created November 2, 2018 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LVMBDV/f176ea0e48cddf594e0f7adba239ba1c to your computer and use it in GitHub Desktop.
Save LVMBDV/f176ea0e48cddf594e0f7adba239ba1c to your computer and use it in GitHub Desktop.
fizzbuzz, in fennel
(for [i 1 100]
(if (= 0 (% i 3))
(if (= 0 (% i 5))
(print "fizzbuzz")
(print "fizz"))
(= 0 (% i 5))
(print "buzz")
(print i)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment