PowerShell - Functions
Given this function, what will be the output when piping numbers 1 to 3?
function Show-Number {
param([Parameter(ValueFromPipeline=$true)] $num)
process { Write-Output ($num * 2) }
}
1..3 | Show-Number