bisquit/examples/fibonacci.bisc

12 lines
114 B
Plaintext
Raw Normal View History

2021-11-17 18:19:49 +00:00
ASSIGN 8 n
ASSIGN 0 a
ASSIGN 1 b
PRINT a
ADD a b a
PRINT a
ADD a b b
PRINT b
SUB n 1 n
GOTO 5 n
EXIT