mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-06 20:00:45 +08:00
9 lines
85 B
QBasic
9 lines
85 B
QBasic
a,b = 10
|
|
print a,b
|
|
dim c(10)
|
|
a,c(a) = 2
|
|
print a,c(2),c(10)
|
|
a$,b$="test"
|
|
print a$,b$
|
|
|