RosettaCodeData/Task/A+B/PowerShell/a+b-3.ps1
2026-04-30 12:34:36 -04:00

3 lines
56 B
PowerShell

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