10 lines
232 B
Plaintext
10 lines
232 B
Plaintext
10 if 1 then print "条件成立"
|
|
20 if 0 then print "条件不成立"
|
|
30 if 1 then if 1 then if 1 then print "多重条件成立"
|
|
40 print "ifによるループ"
|
|
50 i = 0
|
|
60 print i;" ";
|
|
70 i=i+1
|
|
80 if i < 10 then goto 60
|
|
90 print "終了",wait
|