# Swap

\<evalcmd> Swap && none && && value1 && var && First variable. && value2 && var && Second variable. \</evalcmd>

Swaps the values of the two variables.

//[Example://](example://)

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