Tcl技巧與bug彙總(三)

invalid command name "if{"

Question:code

  下面的Tcl程序會報如上錯:io

set a 5
if{ $a<10 }{
    puts $a
}

Solution:class

  ifforforeach等條件語句中大括號{}最好左右都留空格。以下不會報錯:foreach

set a 5
if { $a<10 } {
    puts $a
}
相關文章
相關標籤/搜索