评论中的大括号

由于 Tcl 语言解析器的工作方式,代码中的大括号必须正确匹配。这包括评论中的大括号。

proc hw {} { 
   # this { code will fail
   puts {hello world}
}

一个缺少结束,括号:可能不平衡括号中注释错误将被抛出。

proc hw {} {
  # this { comment } has matching braces.
  puts {hello world}
}

这将适用于大括号正确配对。