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/test.bisq Normal file
View file

@ -0,0 +1,11 @@
PRINT "Hello World, this is a number: " 15
ASSIGN number 15
PRINT "Let's double it's value, shall we?"
ADD number number number
PRINT "There we go: " number
PRINT "Now, what if we multiplied it by 5?"
MUL number 5 number
PRINT number
PRINT "Not bad :)"
PRINT "The program will now terminate!"
EXIT