dust/examples/fizzbuzz.ds

21 lines
290 B
Plaintext
Raw Normal View History

2024-03-25 04:16:55 +00:00
count = 1
while count <= 15 {
divides_by_3 = count % 3 == 0
divides_by_5 = count % 5 == 0
2024-08-10 08:45:30 +00:00
output = if divides_by_3 && divides_by_5 {
2024-05-20 21:15:05 +00:00
'fizzbuzz'
2024-08-10 08:45:30 +00:00
} else if divides_by_3 {
2024-05-20 21:15:05 +00:00
'fizz'
2024-03-25 04:16:55 +00:00
} else if divides_by_5 {
2024-05-20 21:15:05 +00:00
'buzz'
} else {
count.to_string()
2024-03-25 04:16:55 +00:00
}
2024-05-20 21:15:05 +00:00
2024-08-10 08:45:30 +00:00
write_line(output)
2024-03-25 04:16:55 +00:00
count += 1
}