arc> ''nil (quote nil) arc> ''arst (quote arst) arc> (coerce ''nil 'string) "quote" arc> (coerce ''arst 'string) "quotearst"
arc> (with (indiana (obj hat 'fedora weapon 'whip) vader (obj hat 'helmet weapon 'lightsaber) bond (obj weapon 'walther-ppk)) (coerce (map [_ 'hat] (list indiana vader bond)) 'string)) "fedorahelmet"
arc> (with (indiana (obj hat 'fedora weapon 'whip) vader (obj hat 'helmet weapon 'lightsaber) bond (obj weapon 'walther-ppk)) (trues idfn (map [_ 'hat] (list indiana vader bond)))) (fedora helmet)