Replace mudballs with ASDF and support the modular Smoke.
Annotate for file src/hello-world.lisp
2009-04-14 tobias 1 ;;; Copyright 2009 Tobias Rautenkranz
14:32:06 ' 2 ;;; License: X11 license
' 3
2010-04-03 tobias 4 (in-package :cl-smoke.kde.examples)
2009-04-02 tobias 5
22:16:06 ' 6 (defun hello-world ()
2010-04-03 tobias 7 "KDE Hello World"
2009-04-02 tobias 8 (kde:with-kde ("khelloworld" "Hello World" "0.1")
22:16:06 ' 9 (let* ((window (make-instance 'kde:push-button :args '("Hello world"))))
' 10 (cxx:show window)
' 11 (qt:exec))))
' 12