Function
inside-rectangle rectangle x y => result
A list of integers
An integer
An integer
A boolean
inside-rectangle function returnst if the point (x y) is inside rectangle. The rectangle is expected to be ordered; if the rectangle is specified by (left right top bottom), then left must be less than right, and bottom must be less than top. The linesy = bottom andx = right are not considered to be inside the rectangle.