1.4.2变量和表达式
变量分为两种,简单变量和数组变量
1)简单变量,使用set定义
set a {Four score and seven years ago}
>>Four score and seven years ago
set b 12.6
>>12.6
2) unset varname 删除set指定的变量
3)append Varname ?value? 在字符串中增加值
set a "hello"
append a "world"
>>helloworld
4) incr varname ?increment? 增加数值,可以指定增加值,默认为1
set b 10
set c [incr b]
>>11
第二种变量类型为数组
set month(one)"January"
set month(two)"February"
set mon