We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1419503 commit a9dd91cCopy full SHA for a9dd91c
powershell/fizzbuzz.ps1
@@ -3,5 +3,5 @@ switch(1..20)
3
{$_ % 15 -eq 0} {"FizzBuzz"}
4
{$_ % 3 -eq 0} {"Fizz"}
5
{$_ % 5 -eq 0} {"Buzz"}
6
- default {"$_"}
+ default {$_}
7
}
0 commit comments