1
0

Make minor changes to fizzbuzz example

This commit is contained in:
Jeff 2024-10-05 06:42:19 -04:00
parent 35f73d60f0
commit 79cc59c952

View File

@ -11,7 +11,7 @@ while count <= 15 {
} else if divides_by_5 {
"buzz"
} else {
count.to_string()
string(count)
}
write_line(output)