aboutsummaryrefslogtreecommitdiff
path: root/src/cljcc/cljcc.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/cljcc/cljcc.clj')
-rw-r--r--src/cljcc/cljcc.clj16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/cljcc/cljcc.clj b/src/cljcc/cljcc.clj
index 3aeea48..e36658e 100644
--- a/src/cljcc/cljcc.clj
+++ b/src/cljcc/cljcc.clj
@@ -45,3 +45,19 @@
(exit 0 "Successfully executed.")
(catch Exception e
(exit 1 (ex-message e) e))))))
+
+(comment
+
+ (require '[io.github.humbleui.ui :as ui])
+
+ (ui/defcomp app []
+ [ui/center
+ [ui/label "Hello, world"]])
+
+ (defn -main [& args]
+ (ui/start-app!
+ (ui/window #'app)))
+
+ (-main)
+
+ ())