RosettaCodeData/Task/A+B/PowerShell/a+b-3.psh
2023-07-01 13:44:08 -04:00

3 lines
56 B
Text

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