label.tcl revision 3f54fd611f536639ec30dd53c48e5ec1897cc7d9
# label.tcl --
#
# This demonstration script creates a toplevel window containing
# several label widgets.
#
# SCCS: @(#) label.tcl 1.6 96/04/12 12:06:20
set w .label
catch {destroy $w}
toplevel $w
label $w.msg -font $font -wraplength 4i -justify left -text "Five labels are displayed below: three textual ones on the left, and a bitmap label and a text label on the right. Labels are pretty boring because you can't do anything with them."