10.scm 107 B

1234567
  1. (define l (cons (cons "hello" 'world) 4444))
  2. (print (car (car l)))
  3. (print (cdr (car l)))
  4. (print (cdr l))