File test.tcl artifact 6c294de4c5 part of check-in e80d51d3ae
#! /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