Skip to content

Instantly share code, notes, and snippets.

@ayato-p
Created February 22, 2013 09:10
Show Gist options
  • Save ayato-p/5011945 to your computer and use it in GitHub Desktop.
Save ayato-p/5011945 to your computer and use it in GitHub Desktop.
なんとなくノリで書いた。
(use srfi-1)
(define (fizzbuzz)
(map
(lambda (x)
(cond
((zero? (modulo x 15)) "FizzBuzz")
((zero? (modulo x 5)) "Buzz")
((zero? (modulo x 3)) "Fizz")
(else x)))
(iota 100 1 1)))
(fizzbuzz)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment