1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/fizz_buzz.v
2020-03-21 09:47:38 +01:00

19 lines
194 B
V

fn main() {
mut s := ''
for n in 1 .. 101 {
if n % 3 == 0 {
s += 'Fizz'
}
if n % 5 == 0 {
s += 'Buzz'
}
if s == '' {
println(n)
}
else {
println(s)
}
s = ''
}
}