On Oct 5, 2005, at 1:51 AM, Dave Burt wrote:

> I set up a LISPy environment and copied the LISP code as closely as
> possible, using Ruby procs, arrays and strings.

class Array
   def inspect  # (JUST FOR FUN, MAKE ARRAYS LOOK LIKE LISP LISTS)
     '(' + map{|x| x.upcase }.join(" ") + ')'
   end
end

That cracked me up!  ;)

James Edward Gray II