Re: Clojure On Java Friendly Microcontrollers, Beaglebone, etc

2013-09-04 Thread redc...@gmail.com
I also have a vertigo inducing slide deck to go with the robot lightening talk (which I didn't end up using) http://thelibraryofcongress.s3.amazonaws.com/conj2012-robot/index.html On Sunday, September 1, 2013 8:21:46 PM UTC-7, Jeremy Wright wrote: > > Here are some updates on my own research. >

Re: Problem using fn macro

2009-01-15 Thread redc...@gmail.com
by having a parameter named "fn" you are shadowing the global "fn" so what is happening is the "(fn ...)" form inside the function is trying to apply the function you passed in to the arguments. the function you passed in takes no arguments so you get the " Wrong number of args passed to" exceptio