最后更新于1年前
<evalcmd> Swap && none && && value1 && var && First variable. && value2 && var && Second variable. </evalcmd>
Swaps the values of the two variables.
//
i = "World"; j = "Hello"; Swap(i, j); Output( i + " " + j ); --> Hello World