Skip to content

Instantly share code, notes, and snippets.

@voodootikigod
Created October 28, 2008 01:21
Show Gist options
  • Select an option

  • Save voodootikigod/20259 to your computer and use it in GitHub Desktop.

Select an option

Save voodootikigod/20259 to your computer and use it in GitHub Desktop.
(define (fb x)
(cond ((= (remainder x 15) 0) "FizzBuzz")
((= (remainder x 3) 0) "Fizz")
((= (remainder x 5) 0) "Buzz")
(else x)
))
(do ((i 1 (+ i 1))) ((> i 100))
(display (fb i))
(newline))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment