码迷,mamicode.com
首页 > 其他好文 > 详细

TCL之puts

时间:2015-03-18 20:00:20      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

1  Tcl commands

The basic syntax is 

command arg1 arg2 arg3 ...

2  UNIX Tcl scripts

Example 2.1  putswrites the string to I/O steam

         set - assign a value to a variable

#!/usr/local/bin/tclsh
puts stdout {Hello World!}
set var 6
set a $car

Example 2.2  button

#!/usr/local/bin/wish
button .hello -text Hello -command {puts "Hello World"}
pack .hello -padx 10 pady 10

 

TCL之puts

标签:

原文地址:http://www.cnblogs.com/mengdie/p/4347943.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!