RosettaCodeData/Task/Catamorphism/PowerShell/catamorphism.ps1

2 lines
83 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
1..5 | ForEach-Object -Begin {$result = 0} -Process {$result += $_} -End {$result}