Type a BASIC expression below — it runs in immediate mode and prints on the 3-D CRT. Drag the machine to orbit; scroll or pinch to zoom.
Commodore BASIC has two modes. Lines with numbers are stored as a program; lines without a number execute instantly — immediate mode. So the moment the READY. prompt appears you can type:
PRINT 355/113 (or the shortcut ?355/113)
and get an answer with full floating point, parentheses, exponentiation via ^, and built-in functions: SQR, INT, ABS, SIN, COS, TAN, LOG (natural), EXP, ATN and the π symbol (Shift+↑ on the real keyboard). No program, no storage used — Butterfield's "power hidden in plain sight."
Commodore BASIC stores numbers in a 5-byte float format: 1 exponent byte + 4 mantissa bytes ≈ 32-bit mantissa, giving roughly 9 significant decimal digits — better than the 8 digits of most 1981 pocket calculators.
Try PRINT 1/3 above: you get .333333333 — nine threes, leading zero dropped, exactly as the real machine printed it. Angles are radians, LOG is base-e (use LOG(X)/LOG(10) for base-10), and results between 0.01 and 999,999,999 print without scientific notation.