Welcome to the CHICKEN Scheme pasting service
how does match work? pasted by andyjpb on Tue Nov 29 23:32:23 2011
(match '(id url title)
((_ _ #f) (display "wonky"))
(_ (display "donky")))no title added by andyjpb on Tue Nov 29 23:43:18 2011
like this: (match (list id url title) ((_ #f #f) (display "no nuffink")) ((_ _ #f) (display "no title")) (_ (display "donky")))