(define x (list + '+ "+")) x ==> (#[procedure +] + "+") ((car x) 2 3) ==> 5 (eq? (second x) '+) ==> #T (eq? (third x) "+") ==> #F (eq? (third x) '+) ==> #F