Skip to content

Instantly share code, notes, and snippets.

@thara
Created December 11, 2012 13:02
Show Gist options
  • Save thara/4258412 to your computer and use it in GitHub Desktop.
Save thara/4258412 to your computer and use it in GitHub Desktop.
FizzBuzz -simple-
main() {
var limit = 100;
for (var i = 1; i <= limit; i++) {
var sb = new StringBuffer();
if (i % 3 == 0) {
sb.add("Fizz");
}
if (i % 5 == 0) {
sb.add("Buzz");
}
print(sb.isEmpty ? "${i}" : sb.toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment