Skip to content

Instantly share code, notes, and snippets.

@Matojeje
Created December 12, 2019 18:38
Show Gist options
  • Save Matojeje/b1627d558f304a24f6f934b27334b090 to your computer and use it in GitHub Desktop.
Save Matojeje/b1627d558f304a24f6f934b27334b090 to your computer and use it in GitHub Desktop.
FizzBuzz codegolf
for(i=1;i<101;i++){a="";i%3==0?a+="Fizz":0;i%5==0?a+="Buzz":0;print(a||i)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment