|
Hi ,
I have written a proc some thing like this.
proc test {args} {
puts "$args"
}
test "test1 test2 test3"
Output:
{test1 test2 test3}
Here, I dont want curly braces in the output. How to remove those curly braces from parent proc? I dont have any control on child proc. This is very important. Please send reply.
Thanks,
Balu
|