Rewrite example
This commit is contained in:
parent
ea633fbc59
commit
f5b60ea2ff
@ -1,14 +1,17 @@
|
|||||||
count = 1
|
count = 1
|
||||||
|
|
||||||
while count <= 15 {
|
while count <= 15 {
|
||||||
(output count)
|
mod_three = count % 3 == 0
|
||||||
|
mod_five = count % 5 == 0
|
||||||
|
|
||||||
if count % 3 == 0 {
|
if mod_three && mod_five {
|
||||||
|
(output 'fizzbuzz')
|
||||||
|
} else if mod_three {
|
||||||
(output 'fizz')
|
(output 'fizz')
|
||||||
}
|
} else if mod_five {
|
||||||
|
|
||||||
if count % 5 == 0 {
|
|
||||||
(output 'buzz')
|
(output 'buzz')
|
||||||
|
} else {
|
||||||
|
(output count)
|
||||||
}
|
}
|
||||||
|
|
||||||
count += 1
|
count += 1
|
||||||
|
Loading…
Reference in New Issue
Block a user