RosettaCodeData/Task/Generic-swap/FutureBasic/generic-swap.futurebasic

23 lines
258 B
Plaintext

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