#!/bin/sh
# \
	exec itkwish -f "$0" ${1+"$@"} 

#
# Demo script for the Pushbutton class
#
pushbutton .pb -text "Hello" -defaultring yes
pack .pb -padx 10 -pady 10

.pb configure -command {puts "Hello World"}

pack [pushbutton .pb2 -text Hello -defaultring no] -padx 10 -pady 10


