basic: fixing print with (;) would not work as intended

This commit is contained in:
minjaesong
2020-12-14 15:28:54 +09:00
parent 8d733d7ecd
commit ddb7437755
3 changed files with 58 additions and 26 deletions

1
assets/fib.bas Normal file
View File

@@ -0,0 +1 @@
10 DEFUN FIB(N)=IF N==0 THEN 0 ELSE IF N==1 THEN 1 ELSE FIB(N-1)+FIB(N-2)