Question: Write an ascending function to test whether a list of integers is in strict ascending order.
For example, (ascending '(1 2 5)) should return #t, while (ascending '(2 4 1)) and (ascending '(2 2)) should both return #f.
You should handle the empty list, and a list of one number.
Also say in a comment whether or not your ascending function is tail-recursive.
Please help, or at least assist me get started?