6 lines
141 B
Tcl
6 lines
141 B
Tcl
# n has integer representation incremented
|
|
# n string rep updates when value changes
|
|
incr n 5
|
|
|
|
# n string rep used
|
|
puts stdout "n is now $n"
|