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 2843ed3 commit 7d694cdCopy full SHA for 7d694cd
src/surlybird/core.clj
@@ -1,6 +1,7 @@
1
(ns surlybird.core
2
(:require [cheshire.core :as json]
3
[clojure.java.io :refer [reader file]]
4
+ [clojure.pprint :refer [pprint]]
5
[compojure.core :refer :all]
6
[compojure.route :as route]
7
[compojure.handler :as handler]
@@ -27,4 +28,5 @@
27
28
(handler/site main-routes))
29
30
(defn -main []
- (prn "coordinates from sample json --- \n" (get-coords "data/sample.json")))
31
+ (println "coordinates from sample json ---")
32
+ (pprint (get-coords "data/sample.json")))
0 commit comments