mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-06-09 06:34:04 +09:00
basic: fixing print with (;) would not work as intended
This commit is contained in:
1
assets/fib.bas
Normal file
1
assets/fib.bas
Normal 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)
|
||||
Reference in New Issue
Block a user