We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ee9efa commit 5a8ff97Copy full SHA for 5a8ff97
starter_templates/clojure/code/src/http_server/core.clj
@@ -7,8 +7,6 @@
7
8
(def port 4221)
9
10
-(alter-var-root #'*out* (constantly *err*))
11
-
12
(defn serve []
13
(let [server-sock (ServerSocket. port)]
14
(.setReuseAddress server-sock true)
@@ -20,10 +18,6 @@
20
18
;; You can use print statements as follows for debugging, they'll be visible when running tests.
21
19
(println "Logs from your program will appear here!")
22
23
24
- (alter-var-root #'*out* (constantly (java.io.PrintWriter. System/out true)))
25
26
27
;; Uncomment this block to pass the first stage
28
;;(serve)
29
0 commit comments