PowerShell - Control Flow
Find the error in this PowerShell snippet:
if $value -gt 10 {
'Greater than 10'
} elseif ($value -eq 10) {
'Equal to 10'
} else {
'Less than 10'
}