RosettaCodeData/Task/Generic-swap/Tcl/generic-swap-4.tcl
2014-04-02 16:56:35 +00:00

5 lines
76 B
Tcl

set a 1
set b 2
puts "before\ta=$a\tb=$b"
swap a b
puts "after\ta=$a\tb=$b"