Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (loop
- for i from 1 to 100
- when (zerop (mod i 3)) do (format t "Fizz") end
- when (zerop (mod i 5)) do (format t "Buzz") end
- when (and (not (zerop (mod i 3))) (not (zerop (mod i 5))))
- do (format t "~A" i) end
- do (format t "~%"))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement