我们的语句是否像 TCL 中的 {0} 一样工作?

发布于 2024-11-24 14:17:39 字数 123 浏览 1 评论 0原文

在 TCL 中,我想知道我们是否有一些类似于 if {0} {...} 的语句,我的意思是我不想使用 if {0} {...}< /code>,那么我们还有其他选择吗?

In TCL, I wonder if we have some statements just like if {0} {...}, I mean I do not want to use if {0} {...}, so do we have other alternative?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风透绣罗衣 2024-12-01 14:17:39

您可以创建任何您想要以相同方式工作的命令。在下面的示例中,我创建了一个名为“-”的命令,它接受任意参数并且不执行任何操作。唯一需要注意的是,您必须使用平衡引用:

proc - args return

- {
    this code/data will not execute
}
- neither will this
- "this won't execute either"

当然,对于最后两个示例,可能会发生变量和命令替换,具体取决于“-”后面的内容

You can create any command you want to work the same way. In the following example I create a command named "-" that accepts arbitrary arguments and does nothing. The only caveat is that you must use balanced quoting:

proc - args return

- {
    this code/data will not execute
}
- neither will this
- "this won't execute either"

Of course, with those last two examples, variable and command substitution may happen, depending on what follows the '-'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文