rename from biscuit to bisquit

This commit is contained in:
Hans 2021-11-17 19:39:02 +01:00
parent dbfdde72ab
commit 54bbaff3ea
7 changed files with 3 additions and 3 deletions

11
examples/fibonacci.bisq Normal file
View file

@ -0,0 +1,11 @@
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