6 lines
87 B
AutoHotkey
6 lines
87 B
AutoHotkey
Swap(ByRef Left, ByRef Right)
|
|
{
|
|
temp := Left
|
|
Left := Right
|
|
Right := temp
|
|
}
|