comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:307a81e46071
1 (ns coderloop.hello-world
2 (:use rlm.shell-inspect))
3
4 (defn hello-world []
5 (println "Hello World!"))
6
7 (if (rlm.shell-inspect/command-line?)
8 (hello-world))
9
10
11