PLQ #1Done on:   Tuesday, September 17th

Question 1 @ 2024-09-17 19:08

This class works on how many levels?


Question 2 @ 2024-09-17 19:09

Which of the following terms are relevant to this class?


Question 3 @ 2024-09-17 19:12

There’s a problem in the following function:

;; add-thing: Thing (Listof Thing) -> (Listof Thing)
;; Adds a thing to stuff.
(define (add-thing a-thing things)
  (cons a-thing things)
  things)

How should it be fixed?