Skip to content

Instantly share code, notes, and snippets.

@VoQn
Created October 10, 2011 22:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save VoQn/1276739 to your computer and use it in GitHub Desktop.
Save VoQn/1276739 to your computer and use it in GitHub Desktop.
Google が Dart 公開したから早速 FizzBuzz
main(){for(var i=0;++i<101;)print((i%3?'':'Fizz')+(i%5?'':'Buzz')||i);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment