RosettaCodeData/Task/Catamorphism/PowerShell/catamorphism.ps1
2026-04-30 12:34:36 -04:00

1 line
83 B
PowerShell

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