Skip to content

Commit

Permalink
https://clojurescript.org/guides/quick-start
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergeorge committed May 7, 2020
0 parents commit 0a7ab27
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.cpcache
out
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

repl:
clj -m cljs.main -co build.edn -r

advanced:
clj -m cljs.main -co build.edn -O advanced -c

serve:
clj -m cljs.main --serve

1 change: 1 addition & 0 deletions build.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{:main hello-world.core}
1 change: 1 addition & 0 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{:deps {org.clojure/clojurescript {:mvn/version "1.10.758"}}}
3 changes: 3 additions & 0 deletions src/hello_world/core.cljs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
(ns hello-world.core)

(println "Hello world!")

0 comments on commit 0a7ab27

Please sign in to comment.