Search This Blog

Loading...

Thursday, April 9, 2009

TCL "HelloWin.tcl" Dialog Box

#!/usr/bin/wish
# Author: Peter Koshakji
# Date: 04/08/2009
# Filename: HelloWin.tcl
# Skill Level: Beginner
# Duty: Output hello world to a Dialog Box.
#
# Instructions:
# - Create a file Hello.tcl copy content
# - In a console, navigate to the file location
# - chmod 777 HelloWin.tcl
# - Execute the script: ./HelloWin.tcl

tk_messageBox -message "Hello World from TCL" -title "Hello"

0 comments: