4 lines
119 B
PowerShell
4 lines
119 B
PowerShell
function Get-Accumulator ([double]$Start)
|
|
{
|
|
{param([double]$Plus) return $script:Start += $Plus}.GetNewClosure()
|
|
}
|