diff --git a/source_files/schala/fizzbuzz.schala b/source_files/schala/fizzbuzz.schala new file mode 100644 index 0000000..fe62f04 --- /dev/null +++ b/source_files/schala/fizzbuzz.schala @@ -0,0 +1,12 @@ + +for n <- 1..=100 { + if n % 15 == 0 { + print("FizzBuzz") + } else if n % 5 == 0 { + print("Buzz") + } else if n % 3 == 0 { + print("Fizz") + } else { + print(n.to_string()) + } +}