Skip to content

Instantly share code, notes, and snippets.

@niczky12
Created May 26, 2020 09:07
Show Gist options
  • Save niczky12/dedf7f3de49eb7d2491682a448c339b5 to your computer and use it in GitHub Desktop.
Save niczky12/dedf7f3de49eb7d2491682a448c339b5 to your computer and use it in GitHub Desktop.
FizzBuzz in Julia
function fizzer()
for i in 1:100
if i % 15 == 0
x = "FizzBuzz"
elseif i % 5 == 0
x = "Buzz"
elseif i % 3 == 0
x = "Fizz"
else
x = i
end
println(x)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment