You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
cpp-peglib/language/samples/fizzbuzz.cul

17 lines
239 B

/*
* Fizz Buzz
*/
mut i = 1
while i < 24 {
if i % 15 == 0 {
puts('FizzBuzz')
} else if i % 5 == 0 {
puts('Buzz')
} else if i % 3 == 0 {
puts('Fizz')
} else {
puts(i)
}
i = i + 1
}