Skip to content

Instantly share code, notes, and snippets.

@Sambardo
Created February 28, 2018 19:22
Show Gist options
  • Save Sambardo/cbc27d934bf40284f6af13171e0164cf to your computer and use it in GitHub Desktop.
Save Sambardo/cbc27d934bf40284f6af13171e0164cf to your computer and use it in GitHub Desktop.
$num = 4
Switch($num)
{
{$num -lt 5} {write-host "less than 5!" -ForegroundColor Magenta}
{$num -lt 10} {write-host "less than 10!" -ForegroundColor green}
{$num -lt 15} {write-host "less than 15!" -ForegroundColor cyan}
default {write-host "greater than or equal to 15" -ForegroundColor yellow}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment