annotate src/hello_world.clj @ 0:307a81e46071 tip

initial committ
author Robert McIntyre <rlm@mit.edu>
date Tue, 18 Oct 2011 01:17:49 -0700
parents
children
rev   line source
rlm@0 1 (ns coderloop.hello-world
rlm@0 2 (:use rlm.shell-inspect))
rlm@0 3
rlm@0 4 (defn hello-world []
rlm@0 5 (println "Hello World!"))
rlm@0 6
rlm@0 7 (if (rlm.shell-inspect/command-line?)
rlm@0 8 (hello-world))
rlm@0 9
rlm@0 10
rlm@0 11