RosettaCodeData/Task/Generic-swap/Tcl/generic-swap-5.tcl
2015-11-18 06:14:39 +00:00

5 lines
96 B
Tcl

set a 1
set b 2
puts "before\ta=$a\tb=$b"
set a $b[set b $a;lindex {}]
puts "after\ta=$a\tb=$b"