Skip to content

andrejv/cl-simple-tk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

A simple wrapper for the TK gui library in common lisp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published