EQL5/examples/0-Tutorial/1.lisp

8 lines
219 B
Common Lisp

;;; Ported Qt Widgets Tutorial - Creating a Window
(in-package :eql-user)
(let ((window (qnew "QWidget"
"size" '(320 240)
"windowTitle" "Top-level widget")))
(|show| window))