mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 19:51:51 +09:00
8 lines
96 B
QBasic
8 lines
96 B
QBasic
10 FOR I=1 TO 20
|
|
20 PRINT SPC(20-I);
|
|
30 FOR J=1 TO I*2-1
|
|
40 PRINT "*";
|
|
50 NEXT
|
|
60 PRINT
|
|
70 NEXT
|