3 lines
83 B
PowerShell
3 lines
83 B
PowerShell
function swap ([ref] $a, [ref] $b) {
|
|
$a.Value, $b.Value = $b.Value, $a.Value
|
|
}
|