Re: clojure-mode survey

2009-09-11 Thread Jimmie Houchin
On 9/11/2009 7:38 PM, Phil Hagelberg wrote: > > Tom Faulhaber writes: > >> I'm not so excited about deriving authorship data from git, though. It >> seems like there are a lot of reasons that could be "wrong" from the >> point of view of what we want for the documentation (how do you decide >> wh

Re: predicates in Programming Clojure

2009-07-23 Thread Jimmie Houchin
bed as punishment. > > I have *no* idea why I wrote that -- best guess is that is-small? > started as a predicate and was later changed for demo reasons. > > Stuart > > >> Meikel Brandmeyer wrote: >> >>> Hi, >>> >>> Am 21.07.2009 u

Re: predicates in Programming Clojure

2009-07-22 Thread Jimmie Houchin
Meikel Brandmeyer wrote: > Hi, > > Am 21.07.2009 um 22:48 schrieb Jimmie Houchin: > >>(defn is-small? [number] >>(if (< number 100) "yes" "no" )) >> >> Is is-small? a predicate? If so, is this a common pattern for such >>

predicates in Programming Clojure

2009-07-21 Thread Jimmie Houchin
Hello, I am very excited about opportunities of what I can do in Clojure. I am a long time Squeaker (Smalltalk), and also Python user, dabbling at times in various other languages. I have briefly explored Scala as an option for my business app. But, I really am a dynamic typing guy. :) I have