Artifact 6c294de4c5a5d9c28651d7ffd5f941faa739eaa6:
- Executable file test.tcl — part of check-in [a68d12f98b] at 2011-09-09 14:09:13 on branch trunk — Updated to use simpler and more portable build system (user: rkeene, size: 278) [annotate] [blame] [check-ins using]
#! /usr/bin/env tclsh if {![info exists tk_port]} { set tk_library [file join [file dirname [info script]] library] load ./libctk.so Tk } label .l -text "Password" entry .x button .y -text "OK" -command exit pack .l -side left pack .x -side right -fill x -expand 1 pack .y