StackOverflow 文档 tcl 教程 Tcl 语言构造 评论中的大括号 评论中的大括号 Created: November-22, 2018 由于 Tcl 语言解析器的工作方式,代码中的大括号必须正确匹配。这包括评论中的大括号。 proc hw {} { # this { code will fail puts {hello world} } 一个缺少结束,括号:可能不平衡括号中注释错误将被抛出。 proc hw {} { # this { comment } has matching braces. puts {hello world} } 这将适用于大括号正确配对。 引用发表评论