Skip to content

Instantly share code, notes, and snippets.

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