# File lib/facets/more/lisp.rb, line 205 def map(fun, list) if null?(list) nil else cons(fun.call(car(list)), map(fun, cdr(list))) end end