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

  1. #
  2. # Example 2-2
  3. # A standalone Tk script on UNIX.
  4. #
  5.  
  6. #!/usr/local/bin/wish
  7. button .hello -text Hello -command {puts "Hello, World!"}
  8. pack .hello -padx 10 -pady 10
  9.  
  10.  
  11.