使用下面的代码我可以调用 Proc.tcl 文件中的所有过程,但我想单独调用像 sum 或 sub 这样的过程,请让我知道调用它的任何其他可能性
我的proc文件程序,
puts "hello"
proc sum {a b} {
set c [expr $a + $b]
puts "Addition: $c "
}
proc sub {a b} {
set c [expr $a - $b]
puts "Substraction: $c "
}
我的主文件程序,
import Tkinter
import os
r=Tkinter.Tk()
r.tk.eval('source proc.tcl')