Skip to content

Commit a9dd91c

Browse files
committed
Readjusted fizzbuzz
1 parent 1419503 commit a9dd91c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powershell/fizzbuzz.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ switch(1..20)
33
{$_ % 15 -eq 0} {"FizzBuzz"}
44
{$_ % 3 -eq 0} {"Fizz"}
55
{$_ % 5 -eq 0} {"Buzz"}
6-
default {"$_"}
6+
default {$_}
77
}

0 commit comments

Comments
 (0)