RosettaCodeData/Task/A+B/PowerShell/a+b-3.psh
2016-12-05 22:15:40 +01:00

3 lines
56 B
Text

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