7 lines
74 B
Text
7 lines
74 B
Text
|
|
sub swap( byref x, byref y )
|
||
|
|
dim temp
|
||
|
|
temp = x
|
||
|
|
x = y
|
||
|
|
y = temp
|
||
|
|
end sub
|