Sync some stuff

This commit is contained in:
2022-09-27 23:22:18 +02:00
parent 3d7e9c1744
commit 293bf55b7d
9 changed files with 290 additions and 4 deletions

14
Transpiler/Tests/FizzBuzz Normal file
View File

@@ -0,0 +1,14 @@
for i = 0, i <= 100, i++ {
if i % 15 == 0 {
Sys.Console.Print("FizzBuzz")
}
elif i % 5 == 0 {
Sys.Console.Print("Buzz")
}
elif i % 3 == 0 {
Sys.Console.Print("Fizz")
}
else {
Sys.Console.Print(i)
}
}