tcl 不接受参数的过程

示例

proc myproc {} {
    puts "hi"
}
myproc
# => hi

空参数列表(过程名称之后的第二个参数“ myproc”)表示该过程将不接受参数。