RosettaCodeData/Task/Currying/PowerShell/currying-1.ps1
2026-04-30 12:34:36 -04:00

1 line
73 B
PowerShell

function Add($x) { return { param($y) return $y + $x }.GetNewClosure() }