Guest User

Untitled

a guest
Apr 27th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. (for i 1 100
  2. (if (is (mod i 3) 0)
  3. (prn "Fizz"))
  4. (if (is (mod i 5) 0)
  5. (prn "Buzz"))
  6. (if (and (is (mod i 5) 0)
  7. (is (mod i 3) 0))
  8. (prn "FizzBuzz")
  9. (prn:string i)))
Add Comment
Please, Sign In to add comment