Variables, Symbols, Strings

top right

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

Jim Miller W3C