erewr

来源:互联网 发布:刷淘宝流量 编辑:程序博客网 时间:2024/05/16 16:16

proc move {path} {
    set x 0
    set y 0

    for {set i 10} {$i >=0} {incr i -1} {
        for {set j 10} {$j >=0} {incr j -1} {
            set array($i,$j) " "
            #puts "array($i,$j) = $array($i,$j)"
        }
    }