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