Welcome to DrScheme, version 372 [3m]. Language: Pretty Big (includes MrEd and Advanced Student). > (cons 'all(cons 'these)(cons 'problems '())) . cons: expects 2 arguments, given 1: these > (cons 'all (cons'these (cons 'problem ()))) (all these problem) > '(all these problems) (all these problems) > (car'(cdr)) cdr > '(all these problems) (all these problems) > (car(cdr)) . cdr: expects 1 argument, given 0 > '(this sucks balls) (this sucks balls) > (car(cdr this sucks balls)) this: use of a class keyword is not in a class in: this > '(this sucks major ballsJ) (this sucks major ballsJ) > (car(cdr 'this sucks major balls)) . reference to undefined identifier: sucks > '(i hate parenthesis) (i hate parenthesis) > (car(cdr '(i hate parenthesis))) hate > '(Nor is (going to hurt Wren) badly) (Nor is (going to hurt Wren) badly) > (car(cdr '(Nor is (going to hurt Wren) badly))) is > '((Nor is)(going to hurt Wren) badly) ((Nor is) (going to hurt Wren) badly) > (car(cdr '((Nor is) (going to hurt Wren) badly))) (going to hurt Wren) > '(success !) (success !) > (car '(sucess !)) sucess > '(woot) (woot) > 'woot woot > 'fuck yeah fuck . reference to undefined identifier: yeah > '(d'oh) (d 'oh) >