From ab47567cde2c0307042118684305c9ad5871f787 Mon Sep 17 00:00:00 2001 From: Shagun Agrawal Date: Mon, 16 Dec 2024 20:11:01 +0530 Subject: Add parsing for unsigned / signed int, long --- src/cljcc/cljcc.clj | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/cljcc/cljcc.clj') 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) + + ()) -- cgit v1.2.3