Skip to content

Instantly share code, notes, and snippets.

@bryanwoods
Created September 16, 2008 20:10
Show Gist options
  • Save bryanwoods/11123 to your computer and use it in GitHub Desktop.
Save bryanwoods/11123 to your computer and use it in GitHub Desktop.
for i in 1..100;if i%15==0;print"FizzBuzz";elsif i%5==0;print"Buzz";elsif i%3==0;print"Fizz";else;print i;end;print "\n";end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment