In Racket, regular functions evaluate their arguments before calling a function. For example, if f is a function then (f (+ 2 3) (-4 1)) is the same as (f 5 3). For most operations, this style of ...