hello
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/bin/sh
  2. # the next line restarts using wish 
  3. exec wish "$0" "$@"
  4. # hello --
  5. # Simple Tk script to create a button that prints "Hello, world".
  6. # Click on the button to terminate the program.
  7. #
  8. # RCS: @(#) $Id: hello,v 1.3 2001/10/29 16:42:20 dkf Exp $
  9. # The first line below creates the button, and the second line
  10. # asks the packer to shrink-wrap the application's main window
  11. # around the button.
  12. button .hello -text "Hello, world" -command {
  13.     puts stdout "Hello, world"; destroy .
  14. }
  15. pack .hello
  16. # Local Variables:
  17. # mode: tcl
  18. # End: