Generic swap: Difference between revisions

Content deleted Content added
m added a ;Task: (bold) header, added other whitespace to the task's preamble.
KenS (talk | contribs)
No edit summary
Line 744:
[b,a] = [a,b]
</lang>
 
={{header|FutureBasic}}==
<lang futurebasic>
include "ConsoleWindow"
 
dim as long i, j
dim as double x, y
dim as Str15 a, b
 
i = 1059 : j = 62
print i, j
swap i, j
print i, j
print
 
x = 1.23 : y = 4.56
print x, y
swap x, y
print x, y
print
 
a = "Hello" : b = "World!"
print a, b
swap a, b
print a, b
</lang>
 
Output:
<pre>
1059 62
62 1059
 
1.23 4.56
4.56 1.23
 
Hello World!
World! Hello
</pre>
 
=={{header|Gecho}}==