view 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
line wrap: on
line source
1 (ns coderloop.hello-world
2 (:use rlm.shell-inspect))
4 (defn hello-world []
5 (println "Hello World!"))
7 (if (rlm.shell-inspect/command-line?)
8 (hello-world))