PowerShell - Functions
What will this PowerShell function output?
function Test-Return {
param($x)
if ($x -gt 10) { return "High" }
"Low"
}
Test-Return 5