summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/stem/native/core.clj5
-rw-r--r--src/stem/web/core.cljs9
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)