1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
/*!
# `SWAP <variable>,<variable>`

## Purpose
Swaps the values of two variables.

## Remarks
A `?TYPE MISMATCH` error will occur if the types aren't identical.
It's just like `TEMP=A : A=B : B=TEMP` but doesn't need a temporary variable.

## Example
```text
SWAP A,B
```

*/