mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-06 20:00:45 +08:00
10 lines
115 B
QBasic
10 lines
115 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
|
|
|