1. Range
Write a function called range which takes an integer x, and returns a list of all numbers from 0 to x (including zero, not including x). We'll use these lists of numbers for our map, reduce, and fold problems. Be sure the output is in the right order.
(range 5)
; Result (0 1 2 3 4