#!/usr/local/wish -f
# Simple Tk script to create a button that prints "Hello, world".
# Click on the button to terminate the program.
# 
# The first line below creates the button, and the second line
# arranges for packer to manage the button's geometry, centering
# it in the application's main window.

button .hello -font k14 -text "ˤϡߤʤ" -command {
    puts stdout "ˤϡߤʤ"; destroy .
}
pack append . .hello {top}
