basic-lang 0.7.1

The BASIC programming language as it was in the 8-bit era.
Documentation
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
```

*/