Skip to content

Instantly share code, notes, and snippets.

@gdonald
Created December 6, 2021 18:22
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 gdonald/6d0a65a9645b7e38c1a62f5dcafb2898 to your computer and use it in GitHub Desktop.
Save gdonald/6d0a65a9645b7e38c1a62f5dcafb2898 to your computer and use it in GitHub Desktop.
Lol FizzBuzz
#!raku
for (1..100) {
given $_ {
when not $_ % 15 { 'roflmao'.say }
when not $_ % 5 { 'lmao' .say }
when not $_ % 3 { 'lol' .say }
default { .say }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment