RosettaCodeData/Task/Generic-swap/AutoHotkey/generic-swap.ahk
2023-07-01 13:44:08 -04:00

6 lines
87 B
AutoHotkey

Swap(ByRef Left, ByRef Right)
{
temp := Left
Left := Right
Right := temp
}