PowerShell - Working with Objects
What will be the output of this PowerShell code?
$obj = New-Object PSObject
$obj | Add-Member -MemberType ScriptMethod -Name Multiply -Value { param($x, $y) $x * $y }
$obj.Multiply(3, 4)