在ns2的tcl过程中传递参数

时间:2013-11-28 02:28:07

标签: tcl

以下是我在tcl

中的简单程序
set mymin 8

proc ann { mymin } { 
    puts stdout "$mymin is the answer"
}
ann

当我运行它时,它会一直给出错误:

错误#args:应该是#34; ann mymin"

请告诉我这里有什么问题。感谢

1 个答案:

答案 0 :(得分:2)

您需要使用参数调用ann,因为这就是您编写过程的方式。

ann $mymin