Thanks to Jean-Guy for catching this: On Fri, 28 Oct 2005, Jean-Guy Niquet wrote: > In the slides on page 56 the notes say that (min list): Returns the minimum > of a list of numbers. > > It would follow then that (min '(2 3 1)) would return 1 but instead it > produces a syntax error. I checked out Dybvig and the syntax should actually > be (min 2 3 1) which would actually return 1. The same should go for 'max' > as well.