Skip to content

Commit 54607ad

Browse files
committed
Merge pull request #3 from clojurebridge-boston/esumitra-boston
updated NC instructions to add reload
2 parents 957959c + 4e630a3 commit 54607ad

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Nightcode.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,23 +58,25 @@ Create a new Nightcode project cloned from the Clojure Koans git project at http
5858

5959
To run the Koans, do the following
6060

61-
1. Click `Run with REPL`
62-
2. In the Nightcode project files panel on the left, select the file *src/koans/01_equalities.clj*. This will open the file in the editing panel.
63-
3. Click `Eval`. You will see an assertion failure like the one below
61+
1. In the Nightcode project files panel on the left, select the file *src/koans/01_equalities.clj*. This will open the file in the editing panel.
62+
2. Click `Run with REPL`
63+
3. Click `Reload`
64+
4. Click `Eval`. You will see an assertion failure like the one below
6465

6566
```
6667
ExceptionInfo We shall contemplate truth by testing reality, via equality
6768
(= __ true) clojure.core/ex-info (core.clj:4327)
6869
```
6970

70-
4. Modify the code in the file as below, save and click `Eval` again
71+
4. Modify the code in the file as below and click `Eval` again
7172

7273
```
7374
"We shall contemplate truth by testing reality, via equality"
7475
(= true true)
7576
```
7677

7778
You will now see that this assertion passed successfully and you a failure on the next assertion.
78-
5. Modify the code in the next assertion to make it pass and continue on to all the assertion inthe file by saving and clicking `Eval` every time you modify the code. The keyboard shortcut `(Command + E)` to eval can be used to quickly evaluate your answers. Don't forget to save the file after you complete the koans in this file.
79+
80+
5. Modify the code in the next assertion to make it pass and continue on to all the assertions in the file by clicking `Eval` every time you modify the code. The keyboard shortcut `(Command + E)` to eval can be used to quickly evaluate your answers as you modify the code. Don't forget to save the file after you complete the koans in this file.
7981

8082

0 commit comments

Comments
 (0)