RosettaCodeData/Task/Catamorphism/PowerShell/catamorphism.psh

2 lines
83 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
1..5 | ForEach-Object -Begin {$result = 0} -Process {$result += $_} -End {$result}