You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
109 B
QBasic
8 lines
109 B
QBasic
9 years ago
|
#lang br/demo/basic
|
||
9 years ago
|
10 for A=1 to 3
|
||
9 years ago
|
20 print A
|
||
9 years ago
|
21 for B=5 to 8
|
||
|
22 print B
|
||
|
23 next B
|
||
|
30 next A
|
||
9 years ago
|
40 print "yay"
|