diff options
| author | LLLL Colonq <llll@colonq> | 2026-04-26 22:23:19 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-04-26 22:23:19 -0400 |
| commit | 1c7a93144ae794b0f81039c38cc4a7a969230925 (patch) | |
| tree | a2edf372e22f0656a62eb43deb4451a09245875f /src | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/stem/native/core.clj | 5 | ||||
| -rw-r--r-- | src/stem/web/core.cljs | 9 |
2 files changed, 14 insertions, 0 deletions
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) |
