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

6
assets/gugu.bas Normal file
View File

@@ -0,0 +1,6 @@
10 FOR I = 2 TO 9
20 FOR J = 1 TO 9
30 PRINT I; "*"; J; "="; I * J
40 NEXT
50 INPUT "Press Enter Key..."; A
60 NEXT