mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 20:59:05 +00:00
* Remove multiple newlines at the end of file * Remove the white space from the end of line
9 lines
214 B
QBasic
9 lines
214 B
QBasic
a=1 : b=2
|
|
print "a=";a;"b=";b
|
|
swap a,b
|
|
print "a=";a;"b=";b
|
|
dim a$(1,1),b$(1,1)
|
|
a$(1,0)="a" : b$(0,1)="b"
|
|
print "a$(1,0)=";a$(1,0);"b$(0,1)=";b$(0,1)
|
|
swap a$(1,0),b$(0,1)
|
|
print "a$(1,0)=";a$(1,0);"b$(0,1)=";b$(0,1)
|