first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
(ns com-jakewindle-git.scraper
|
||||
(:require [clj-http.client :as client]))
|
||||
|
||||
(defn greet
|
||||
"Callable entry point to the application."
|
||||
[data]
|
||||
(println (str "Hello, " (or (:name data) "World") "!")))
|
||||
|
||||
(defn -main
|
||||
"I don't do a whole lot ... yet."
|
||||
[& args]
|
||||
(greet {:name (first args)}))
|
||||
Reference in New Issue
Block a user