mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-11 21:20:12 +00:00
9 lines
114 B
QBasic
9 lines
114 B
QBasic
|
|
dim x(10)
|
||
|
|
mat read x
|
||
|
|
mat print x
|
||
|
|
mat redim x(7)
|
||
|
|
mat print x
|
||
|
|
mat redim x(12)
|
||
|
|
mat print x
|
||
|
|
data 1,2,3,4,5,6,7,8,9,10
|