initial import
Annotate for file src/hello-world.lisp
2009-04-05 tobias 1 (in-package :qt.examples)
15:36:46 ' 2 (declaim (optimize (debug 3)))
' 3
' 4 (defun hello-world ()
' 5 "Hello world"
' 6 (qt:with-app
' 7 (let ((widget (make-instance 'qt:push-button :args '("Hello world"))))
' 8 (cxx:show widget)
' 9 (qt:exec))))