Skip to content

Instantly share code, notes, and snippets.

@thosakwe
thosakwe / hey.lisp
Last active October 27, 2022 13:02
Flutter in Lisp???
(defclass MyWidget (StatelessWidget)
(defun build (ctx)
(Column
(AppBar
:title (Text "Hello, Disp!")
:actions (list
(Text "A")
(Padding
:padding (EdgeInsets.all 16)
:child (Text "B"))))