Skip to content

Instantly share code, notes, and snippets.

@phuf
Created January 1, 2017 13:25
Show Gist options
  • Save phuf/3647a8ee9621a8e2d484130410843ef9 to your computer and use it in GitHub Desktop.
Save phuf/3647a8ee9621a8e2d484130410843ef9 to your computer and use it in GitHub Desktop.
Fizzbuzz in PowerShell.

Fizzbuzz in PowerShell:

(1..100) | % {
  if ($_ % 3 -eq 0 -and $_ % 5 -eq 0) {
    "fizz-buzz"
  } elseif ($_ % 3 -eq 0) {
    "fizz"
  } elseif ($_ % 5 -eq 0) {
    "buzz"
  } else {
    $_
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment