From 1c7a93144ae794b0f81039c38cc4a7a969230925 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Sun, 26 Apr 2026 22:23:19 -0400 Subject: Initial commit --- src/stem/native/core.clj | 5 +++++ src/stem/web/core.cljs | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 src/stem/native/core.clj create mode 100644 src/stem/web/core.cljs (limited to 'src') diff --git a/src/stem/native/core.clj b/src/stem/native/core.clj new file mode 100644 index 0000000..305c6b2 --- /dev/null +++ b/src/stem/native/core.clj @@ -0,0 +1,5 @@ +(ns stem.native.core) + +(+ 1 1) + +(+ 2 2) diff --git a/src/stem/web/core.cljs b/src/stem/web/core.cljs new file mode 100644 index 0000000..5f7e73c --- /dev/null +++ b/src/stem/web/core.cljs @@ -0,0 +1,9 @@ +(ns stem.web.core + (:require cljs.pprint)) + +(println "test!") + +(defn hi [] + (println "hi!")) + +(+ 1 2) -- cgit v1.2.3