Introduction to the Tcl command language
Posted 那抹阳光1994
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Introduction to the Tcl command language相关的知识,希望对你有一定的参考价值。
tcl是基于字符串的语言。它允许:
1.变量和变量替换
2.数学表达式的求值
3.基本的控制结构(if,while,for,foreach)
4.程序
5.文件操作
incr a等价于a = a+1
每一句的结束可以换行,也可以用分号;
tcl基本的语法格式:
command $arg1 $arg2 ...
command是tcl的命令名称,也可以是用户定义的程序名称
$arg1 $arg2 为命令参数
支持命令的嵌套[] command [nested-command1] [nested-command2]
赋值语句 set a 1
注释用#: set a 5; #assign the value 5 to variable a
$符号表示提取数值,如puts $a
set a 1
set b a
set b $a
expr后加表达式会计算,如
>expr 2+3
5
以上是关于Introduction to the Tcl command language的主要内容,如果未能解决你的问题,请参考以下文章
[An Introduction to GCC 学习笔记] 15 How the compiler works, Identifying files
Introduction to the Build Lifecycle
The basic introduction to MIX language and machine
You need tcl 8.5 or newer in order to run the Redis test.