rest argument to functions
Define a function doit2 which
- takes 2 required arguments alpha and beta and an &rest argument all-the-others
- Prints each of its arguments
make each of the following calls to the function
- (doit2 2 3)
- (doit2 2 3 5)
- (doit2 2 3 ‘july 4 1776)
- (doit2 3 4 5 6 7)