Re: clojure.main on a clj file does not show up any println

2014-12-08 Thread Ganesh Krishnamoorthy
dependencies distrib i can download and place it? On Monday, December 8, 2014 7:32:16 PM UTC+5:30, Ganesh Krishnamoorthy wrote: > > I have been trying all my bit on to get my hello world working; Any help > is much appreciated... > > am trying to run it by > java -cp clojure-1.6.

clojure.main on a clj file does not show up any println

2014-12-08 Thread Ganesh Krishnamoorthy
I have been trying all my bit on to get my hello world working; Any help is much appreciated... am trying to run it by java -cp clojure-1.6.0.jar clojure.main hey.clj I just get an empty line. Below is my file: (defn -main [] (println "Hello World!") (println (- 1 1))) -- You received t