basic:spc stmt and more sample codes

This commit is contained in:
minjaesong
2020-11-27 16:55:36 +09:00
parent 83e573dab3
commit bdcef683ae
4 changed files with 23 additions and 2 deletions

7
assets/tri.bas Normal file
View File

@@ -0,0 +1,7 @@
10 FOR I = 1 TO 20
20 PRINT SPC(20-I);
30 FOR J = 1 TO I*2
40 PRINT "*";
50 NEXT
60 PRINT ""
70 NEXT