this post was submitted on 20 Oct 2023
1 points (100.0% liked)

Lisp

52 readers
3 users here now

founded 1 year ago
MODERATORS
 

How to write a "hello world" ltk application using ccl lisp ?

you are viewing a single comment's thread
view the rest of the comments
[–] Ok_Specific_7749@alien.top 1 points 11 months ago

Program below does not work with ccl.


load "~/quicklisp/setup.lisp")
(ql:quickload "ltk")
(in-package :ltk-user)
(declaim (optimize (speed 3) (safety 3)))
(defun main()
  (with-ltk ()
   (let ((b (make-instance 'button
                           :master nil
                           :text "Press Me"
                           :command (lambda ()
                                      (format t "Hello World!~&")))))
     (pack b))))
(main)