RosettaCodeData/Task/Catamorphism/PowerShell/catamorphism.psh
2023-07-01 13:44:08 -04:00

1 line
83 B
Text

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