Swap(
     var:value1,
     var:value2
)
none

Arguments

value1

First variable.

value2

Second variable.

Description

Swaps the values of the two variables.

Example:

i = "World";
j = "Hello";
Swap(i, j);
Output( i + " " + j );
--> Hello World