You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
214 B
9 lines
214 B
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)
|
|
|