RosettaCodeData/Task/Generic-swap/PowerShell/generic-swap-2.ps1

4 lines
83 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
function swap ([ref] $a, [ref] $b) {
$a.Value, $b.Value = $b.Value, $a.Value
}