diff options
| author | Shagun Agrawal <agrawalshagun07@gmail.com> | 2024-12-16 20:11:01 +0530 |
|---|---|---|
| committer | Shagun Agrawal <agrawalshagun07@gmail.com> | 2024-12-16 20:11:01 +0530 |
| commit | ab47567cde2c0307042118684305c9ad5871f787 (patch) | |
| tree | a903307e5bd963a91c143a84da0d0aea6b7198db /src/cljcc/cljcc.clj | |
| parent | 90b8a837789eb99c44bcea9abee53012f2df71a4 (diff) | |
Add parsing for unsigned / signed int, long
Diffstat (limited to 'src/cljcc/cljcc.clj')
| -rw-r--r-- | src/cljcc/cljcc.clj | 16 |
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) + + ()) |
