PowerShell - Functions
Find the problem in this function:
What happens if you call
function AddNumbers { param([int]$a = 1, [int]$b) $a + $b }What happens if you call
AddNumbers without arguments?