The just completed interpreter may not be very able, still it can run a few programs.
The first ever:
otext("Hello, World!\n");
outputs:
Hello, World!
The first 16 Fibonacci numbers:
mode a, b, i; a = 0; b = 1; omode(a); obyte('\n'); omode(b); obyte('\n'); i = 2; while (i < 16) { mode c; c = a + b; omode(c); obyte('\n'); a = b; b = c; i = i + 1; }
outputs:
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610