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: Nightcode.md
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -58,23 +58,25 @@ Create a new Nightcode project cloned from the Clojure Koans git project at http
58
58
59
59
To run the Koans, do the following
60
60
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
64
65
65
66
```
66
67
ExceptionInfo We shall contemplate truth by testing reality, via equality
67
68
(= __ true) clojure.core/ex-info (core.clj:4327)
68
69
```
69
70
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
71
72
72
73
```
73
74
"We shall contemplate truth by testing reality, via equality"
74
75
(= true true)
75
76
```
76
77
77
78
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.
0 commit comments