initial import
src/hello-world.lisp
Fri Apr 3 00:16:06 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* initial import
--- old-kde.examples/src/hello-world.lisp 1970-01-01 01:00:00.000000000 +0100
+++ new-kde.examples/src/hello-world.lisp 2014-10-30 07:20:11.000000000 +0100
@@ -0,0 +1,8 @@
+(in-package :kde.examples)
+
+(defun hello-world ()
+ (kde:with-kde ("khelloworld" "Hello World" "0.1")
+ (let* ((window (make-instance 'kde:push-button :args '("Hello world"))))
+ (cxx:show window)
+ (qt:exec))))
+