PowerShell - Control Flow
What will be the output of this PowerShell code?
switch -Wildcard ('cat', 'car', 'dog') {
'ca*' { 'Starts with ca' }
'd*' { 'Starts with d' }
default { 'No match' }
}