diff options
| author | Your Name <agrawalshagun07@gmail.com> | 2025-03-16 18:03:26 +0530 |
|---|---|---|
| committer | Your Name <agrawalshagun07@gmail.com> | 2025-03-16 18:03:26 +0530 |
| commit | 32499638cef3c49ff686b19b5708d6b08712c526 (patch) | |
| tree | 31f09287602d243b22660fe455e5174bdcc280b4 /cljcc-compiler/src/cljcc/config.clj | |
| parent | 277319fa392f5ee9f21eedf2c4d224739f045690 (diff) | |
Refactor into cli and cljcc-compiler folders
Pass all tests.
Fix babashka tasks and build setup.
Repl is behaving in unexpected ways, otherwise working
as expected.
Diffstat (limited to 'cljcc-compiler/src/cljcc/config.clj')
| -rw-r--r-- | cljcc-compiler/src/cljcc/config.clj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cljcc-compiler/src/cljcc/config.clj b/cljcc-compiler/src/cljcc/config.clj new file mode 100644 index 0000000..d5a6dc2 --- /dev/null +++ b/cljcc-compiler/src/cljcc/config.clj @@ -0,0 +1,9 @@ +(ns cljcc.config) + +(def config (atom {})) + +(defn set-os [os] + (swap! config assoc :os os)) + +(defn get-os [] + (or (get @config :os) :linux)) |
