把别人的Tcl/Tk代码加入到Go语言里7 文本模式(终端)的进度条

a 首先打开网页 http://wiki.tcl.tk/16939

b 把网页里提到的第一段tcl/tk代码复制到go源代码的init_script字符串常量里

package main

import "github.com/nsf/gothic"

const init_script = `

#把Tcl/Tk源代码复制到这个常量里

`

func main() {

    ir := gothic.NewInterpreter(init_script)

    <-ir.Done

}

c 我们需要再增加几行tcl/tk代码到init_script字符串常量末尾

for {set i 0} {$i < 6200} {incr i 200} {  
  progres $i 6200
  after 200
}


d OK,可以运行了






你可能感兴趣的:(把别人的Tcl/Tk代码加入到Go语言里7 文本模式(终端)的进度条)