RosettaCodeData/Task/A+B/PowerShell/a+b-3.psh

4 lines
56 B
Plaintext

filter add {
return [int]$args[0] + [int]$args[1]
}