RosettaCodeData/Task/Generic-swap/Icon/generic-swap.icon
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
174 B
Text

procedure main()
x := 1
y := 2
x :=: y
write(x," ",y)
# swap that will reverse if surrounding expression fails
if x <-> y & x < y then write(x, " ", y)
end