annotate src/rlm/identify.clj @ 0:78a630e650d2

initial import
author Robert McIntyre <rlm@mit.edu>
date Tue, 18 Oct 2011 00:57:08 -0700
parents
children
rev   line source
rlm@0 1 (ns rlm.identify
rlm@0 2 "I want to be able to tell what computer I'm using.
rlm@0 3 I do this with a magic file."
rlm@0 4 {:author "Robert McIntyre"}
rlm@0 5 (use [clojure [string :only [trim-newline]]]))
rlm@0 6
rlm@0 7 (def magic-file "/home/r/.identify-computer")
rlm@0 8
rlm@0 9 (defn identify []
rlm@0 10 (trim-newline (slurp magic-file)))