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

4 lines
56 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
filter add {
return [int]$args[0] + [int]$args[1]
}