RosettaCodeData/Task/Catamorphism/PowerShell/catamorphism.psh
2016-12-05 22:15:40 +01:00

1 line
83 B
Text

1..5 | ForEach-Object -Begin {$result = 0} -Process {$result += $_} -End {$result}