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.
7 lines
103 B
QBasic
7 lines
103 B
QBasic
9 years ago
|
#lang br/demo/basic
|
||
|
|
||
|
5 A=5
|
||
|
10 DIM A(A)
|
||
|
20 PRINT A /* this should print 5 */
|
||
|
30 PRINT A(0)
|
||
|
40 PRINT A(5)
|