Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2014
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (ns clj-play.core
  2.     (:gen-class)
  3.     (:require [clj-play.twitter :refer [timeline-news]]))
  4.  
  5. (defn- init []
  6.   (println "Setup"))
  7.  
  8. (defn- destroy []
  9.   (println "Shutdown")
  10.   )
  11.  
  12. (defn -main
  13.   "I don't do a whole lot."
  14.   [& args]
  15.   (init)
  16.   (try
  17.     (println (timeline-news "al3xandru")) ; this calls twitter-api
  18.     (System/exit 1)
  19.     (finally destroy)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement