Skip to content

Instantly share code, notes, and snippets.

@schwartzmx
Created July 25, 2018 15:42
Show Gist options
  • Save schwartzmx/f2a9eadfb70be6507145cdf7de86e98a to your computer and use it in GitHub Desktop.
Save schwartzmx/f2a9eadfb70be6507145cdf7de86e98a to your computer and use it in GitHub Desktop.
1..100 | % {
switch ($_) {
{ $_ % 3 -eq 0 -and $_ % 5 -eq 0 } { "fizzbuzz" }
{ $_ % 3 -eq 0 } { "fizz" }
{ $_ % 5 -eq 0 } { "buzz" }
default { $_ }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment