Code:
Hello:
Please tell me how to put two strings into one line.
My coding as follow;
puts "the first ...."
puts "the second...."
when I run with the command wish test.tcl, it output as follow;
the first...
the second....
but this is not I want, I want the result like follow;
the first...the second....
and I don't want my code like follow
puts "the first...the second"
Thanks