You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+24-28
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ A small but vibrant [global community](https://clojure.org/community/user_groups
34
34
35
35
- Support a 1-day guided workshop for programmers new to Clojure (not absolute programming beginners).
36
36
- Also function as at-home learning material for said programmers.
37
-
- The `master` branch is heavily commented, for at-home use
37
+
- The `master` branch is heavily commented, for at-home use.
38
38
- A `solutions` branch will be available, as a companion to `master`.
39
39
But don't peek at it in advance!
40
40
- You may see a `workshop-code` branch. Ignore it. It is meant only for
@@ -81,42 +81,38 @@ Take what is useful, discard the rest.
81
81
82
82
Just do the following one by one, and you should be fine.
83
83
84
+
## Java
85
+
86
+
You need Java installed.
87
+
88
+
- Run `java -version` in your terminal.
89
+
- If Java is not installed, please [download and install Java from here](https://adoptopenjdk.net/).
90
+
- Any version should do, but prefer Java 8 or higher. We have not tested
91
+
this project with Java 7.
92
+
- Once you are done, `java -version` should show you a Java version.
93
+
84
94
## VSCode + Calva
85
95
86
-
We support VSCode + Calva IDE in the classroom for this workshop. We suggest you use this setup, unless of course, you have already configured your favourite editor for Clojure development. We've listed alternate starter kits below (VSCode, Vim, Emacs, Atom), _but_ please avoid [bikeshedding](http://catb.org/jargon/html/B/bikeshedding.html) editors. Just complete the workshop first!
96
+
We support VSCode + Calva IDE in the classroom for this workshop. We suggest you use this setup, unless of course, you have already configured your favourite editor for Clojure development. We've listed alternate starter kits below (IntelliJ, Vim, Emacs, Atom), _but_ please avoid [bikeshedding](http://catb.org/jargon/html/B/bikeshedding.html) editors. Just complete the workshop first!
87
97
88
-
- Download and Install [VSCode](https://code.visualstudio.com/)
98
+
- Download and Install [VSCode](https://code.visualstudio.com/).
89
99
- Open VSCode and complete the initialization process.
90
-
- Open the "Extensions" Tab and search for "Calva", Install the "Calva: Clojure & ClojureScript Interactive Programming" extension
91
-
- Alternatively you can visit the [Calva page](https://marketplace.visualstudio.com/items?itemName=betterthantomorrow.calva) to install it
92
-
- You need Java Installed
93
-
- Run `java -version` in your terminal.
94
-
- If Java is not installed, please [download and install Java from here](https://adoptopenjdk.net/). Any version should do.
95
-
- Once you are done, `java -version` should show you a Java version.
100
+
- Open the "Extensions" Tab and search for "Calva", Install the "Calva:
- Alternatively you can visit the [Calva page](https://marketplace.visualstudio.com/items?itemName=betterthantomorrow.calva) to install it.
96
103
97
104
Once installed:
98
105
99
-
- Clone the repository on your machine
100
-
- In VSCode Use File > Open Folder... and open the cloned folder
101
-
- Notice that Calva activates
102
-
- Open the [Command Pallete](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette) in VSCode using `⇧⌘P` on Mac or `Ctrl+Shift+P` on other systems
103
-
- Type "Calva: Start Project REPL" and choose "Calva: Start a Project REPL and Connect (aka Jack-In)" from the list
104
-
- Select `deps.edn` when prompted for Project type. We are using [tools.deps](https://clojure.org/guides/deps_and_cli) for managing the project. You don't need to worry about it's details for this workshop
105
-
- VSCode will create a new pane called 'output.calva-repl' and you will see `clj꞉user꞉>` prompt in that screen
106
+
- Clone the repository on your machine.
107
+
- In VSCode Use File > Open Folder... and open the cloned folder.
108
+
- Notice that Calva activates.
109
+
- Open the [Command Palette](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette) in VSCode using `⇧⌘P` on Mac or `Ctrl+Shift+P` on other systems.
110
+
- Type "Calva: Start Project REPL" and choose "Calva: Start a Project REPL and Connect (aka Jack-In)" from the list.
111
+
- Select `deps.edn` when prompted for Project type. We are using [tools.deps](https://clojure.org/guides/deps_and_cli) for managing the project. You don't need to worry about it's details for this workshop.
112
+
- VSCode will create a new pane called 'output.calva-repl' and you will see `clj꞉user꞉>` prompt in that screen.
106
113
- You have a working REPL now!
107
-
108
114
- Keep the [Paredit guide](https://calva.io/paredit/) handy, editing code will require some understanding of paredit.
109
115
110
-
### Java
111
-
112
-
- Run `java -version` in your terminal.
113
-
- If Java is not installed, please [download and install Java from here](https://adoptopenjdk.net/). Any version should do.
114
-
- Once you are done, `java -version` should show you a Java version.
115
-
116
-
Notes:
117
-
118
-
- We have not tested this project with Java 7.
119
-
120
116
## Your favourite editor:
121
117
122
118
You may find instructions for your favourite editor at one of these pages. But there are only so many choices. Ultimately, you must pick your poison and run with it:
0 commit comments