test.tcl at [b1a15e5697]

File test.tcl artifact 6c294de4c5 part of check-in b1a15e5697


#! /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