RosettaCodeData/Task/Window-creation/Scheme/window-creation.ss

13 lines
235 B
Scheme
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
#!r6rs
;; PS-TK example: display simple frame
(import (rnrs)
(lib pstk main) ; change this to refer to your installation of PS/Tk
)
(define tk (tk-start))
(tk/wm 'title tk "PS-Tk Example: Frame")
(tk-event-loop tk)