Skip to content

Commit 5a8ff97

Browse files
committed
Skip over writing to stderr instead of stdout
1 parent 3ee9efa commit 5a8ff97

File tree

1 file changed

+0
-6
lines changed
  • starter_templates/clojure/code/src/http_server

1 file changed

+0
-6
lines changed

starter_templates/clojure/code/src/http_server/core.clj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
(def port 4221)
99

10-
(alter-var-root #'*out* (constantly *err*))
11-
1210
(defn serve []
1311
(let [server-sock (ServerSocket. port)]
1412
(.setReuseAddress server-sock true)
@@ -20,10 +18,6 @@
2018
;; You can use print statements as follows for debugging, they'll be visible when running tests.
2119
(println "Logs from your program will appear here!")
2220

23-
24-
(alter-var-root #'*out* (constantly (java.io.PrintWriter. System/out true)))
25-
26-
2721
;; Uncomment this block to pass the first stage
2822
;;(serve)
2923

0 commit comments

Comments
 (0)