Hi,
I am new to TCL, I am running one simple TCL program
set VAL 1
if {$VAL < 7} {
puts “…”; exit 1 }
It is giving an error
“unexpected end of file”
Can any body help me..
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
The “unexpected end of file” error usually means you have a php block unterminated. The parser reads off the end of the file searching for block termination, usually
Are you sure that there is a space between the closing and opening braces at the end of line 2? Lack of space here can throw the interpreter.