fa1bf6c ^
1 2 3 4 5
range :: Int -> Int -> [Int] range l r | l <= r = l:range (l + 1) r | otherwise = []