Mercurial > rlm
view src/rlm/identify.clj @ 5:fca75c0e8f40
added stories.clj
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Thu, 01 Mar 2012 05:47:37 -0700 |
parents | 78a630e650d2 |
children |
line wrap: on
line source
1 (ns rlm.identify2 "I want to be able to tell what computer I'm using.3 I do this with a magic file."4 {:author "Robert McIntyre"}5 (use [clojure [string :only [trim-newline]]]))7 (def magic-file "/home/r/.identify-computer")9 (defn identify []10 (trim-newline (slurp magic-file)))