RosettaCodeData/Task/Window-creation-X11/Tcl/window-creation-x11-2.tcl
2023-07-01 13:44:08 -04:00

11 lines
251 B
Tcl

package require xlib
XOpenDisplay {}
set w [XCreateSimpleWindow 10 10 100 100 1]
XMapWindow $w
while {[lindex [XNextEvent] 0] == "expose"} {
XFillRectangle $w 20 20 10 10
XDrawString $w 10 50 "Hello, World!"
}
XDestroyWindow $w
XCloseDisplay