keyword arguments to functions
Define a function doit which
- takes 2 required arguments alpha and beta and 2 keyword arguments gamma and delta.
- Prints each of its arguments
make each of the following calls to the function
- (doit 2 3)
- (doit 2 3 :gamma 5)
- (doit 2 3 :delta 7 :gamma 5)