Swap
    ------------------
    Basic keyword
     
     
    Use: Exchange the contents of the two variables.
     
    Syntax is: Swap var1,var2
     
    Example:
    Swap A%,B%
    is equivalent to
    tmp% = A%
    A% = B%
    B% = tmp%