我在运行Tcl脚本时遇到困难

我已经开始学习TCL脚本语言了.我使用ActivateState Tcl Devkit 5.3.0.

当我创建新的模拟器时,它给出了如下错误:

invalid command name "new"
    while executing
"new Simulator"
    invoked from within
"set ns [new Simulator]"

最佳答案 没有命令newin Tcl.

所以它是由一些包或一些修改过的shell提供的.

假设您使用ns2或类似的东西,您需要使用适当的shell或通过package require将包加载到普通的tclsh shell中.

点赞