On Wed, 10 Dec 2003, Ross Werner wrote:
> to talk over the network. What's the simplest thing I could get away with 

Tcl/Tk is really, really simple.  Probably the simplest GUI language by a
large margin.  Their Hello, World program is 3 lines long, compared to dozens
or hundreds of lines for virtually any other toolkit:

#!/usr/bin/wish
button .hello -text "Hello, world" -command exit
pack .hello 


> for such a beast? [Or ought I go with something like gtk anyway just for 
> the experience? (Assuming I can get php-gtk to compile, ha ha.)]

Maybe.  That's for you to decide.  I used Tcl/Tk for several CS classes where
I wanted simple GUIs, and it did really well.  OTOH, if you get seriously into
GUI apps you'll probably end up using GTK/Qt/wxWindows.

                                                -J



____________________
BYU Unix Users Group 
http://uug.byu.edu/ 
___________________________________________________________________
List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list

Reply via email to