RosettaCodeData/Task/Catamorphism/PowerShell/catamorphism.psh

2 lines
83 B
Plaintext

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