Rebooting the QBasic we all know and love!
Exchanges the value of two variables.
SWAP variable1,variable2
SWAP
variable1 and variable2 must be the same type.
a = 1 b = 2 SWAP a, b PRINT a, b
2 1