home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / mac / exsource.old / 22_1.tcl < prev    next >
Text File  |  2003-04-15  |  172b  |  12 lines

  1. #
  2. # Example 22-1
  3. # "Hello, World!" Tk program.
  4. #
  5.  
  6. #!/usr/local/bin/wish
  7. button .hello -text Hello \
  8.     -command {puts stdout "Hello, World!"}
  9. pack .hello -padx 20 -pady 10
  10.  
  11.  
  12.