上等兵
UID2741805
U币1
G币142
技术0
主题4
精华0
阅读权限20
注册时间2016-11-30
最后登录2017-1-19
在线时间16 小时
出生地广东省 东莞市
上等兵
|
#_______________________________________________________________________________
# utility to return TRUE(1) if the variable v1 is set, else FALSE(0)
# example set xx [hiset yy] returns xx as TRUE(1) or FALSE(0)
# example if {[hiset yy]} {puts $list_file "yy"}
#_______________________________________________________________________________
proc hiset { v1 } {
upvar $v1 v2
if { [info exists v2] } { return 1 } else { return 0 }
}
|
|