Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 470 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 470 Bytes

SIMPLE-TK

A very simple wrapper for tcl/tk in common lisp inspired by the python tkinter package.

Example

A small example of a window with one button.

(with-tk-root (r)
  (setf (window-title r) "Hi!")
  (pack (button :parent r
                :text "Hello world"
                :command (lambda ()
                           (window-destroy r)))))

More examples are listed at the wiki.