Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Kata 8/24 Fizz Buzz w/ RSpec
ZaBlanc
Aug 24th, 2011
533
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Ruby
0.17 KB
| None
|
0
0
raw
download
clone
embed
print
report
class
FizzBuzz
def
fizz
(
num
)
return
"FizzBuzz"
if
num
%
15
==
0
return
"Fizz"
if
num
%
3
==
0
return
"Buzz"
if
num
%
5
==
0
return
num.
to_s
end
end
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
✅ Make $1500 in 20 minutes
JavaScript | 3 sec ago | 0.31 KB
Swapzone Glitch (Working)
JavaScript | 9 sec ago | 0.31 KB
Profit Method
JavaScript | 14 sec ago | 0.31 KB
Instant Profit Method
JavaScript | 19 sec ago | 0.31 KB
✅ MAKE $900 INSTANTLY
JavaScript | 28 sec ago | 0.31 KB
ChangeNOW Bug (Get more on BTC swaps)
JavaScript | 34 sec ago | 0.31 KB
✅ Exploit 500$ in 15 Minutes
JavaScript | 40 sec ago | 0.31 KB
✅ MAKE $500 IN 15 MIN
JavaScript | 48 sec ago | 0.31 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!