Business BASIC III: Swap

Business BASIC III: Swap

The Swap command exchanges the values of two variables of the same type;
however, there are several reserved variables, like HPos and VPos, that Swap
does not work with properly.
 
        10 Swap A%,B%                             works
        20 Swap A%,HPos                           does not work
        30 Temp% = A%: A% = HPos: HPos = Temp%    works


Back