initial import
src/hello-world.lisp
Sun Apr 5 17:36:46 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* initial import
--- old-qt.examples/src/hello-world.lisp 1970-01-01 01:00:00.000000000 +0100
+++ new-qt.examples/src/hello-world.lisp 2014-10-30 07:39:44.000000000 +0100
@@ -0,0 +1,9 @@
+(in-package :qt.examples)
+(declaim (optimize (debug 3)))
+
+(defun hello-world ()
+ "Hello world"
+ (qt:with-app
+ (let ((widget (make-instance 'qt:push-button :args '("Hello world"))))
+ (cxx:show widget)
+ (qt:exec))))