我们的语句是否像 TCL 中的 {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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建任何您想要以相同方式工作的命令。在下面的示例中,我创建了一个名为“-”的命令,它接受任意参数并且不执行任何操作。唯一需要注意的是,您必须使用平衡引用:
当然,对于最后两个示例,可能会发生变量和命令替换,具体取决于“-”后面的内容
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:
Of course, with those last two examples, variable and command substitution may happen, depending on what follows the '-'