I think that is a good point to know.
proc will help to make our code more clear but makes it the run faster ?
Does somebody have an idea ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Generally with more than one invocation yes, as procs a compiled to bytecode on their first invocation, so they are only parsed once. From the second invocation onward the bytecode is just executed cf. http://wiki.tcl.tk/1677 for more technical details.