Uncategorized
Write a Common Lisp function named avg with a single parameter named aList. avg returns the average of all elements in aList. Assume all elements in aList are numbers. If given an empty list, avg should return NIL.
Common Lisp function named my List Write a Common Lisp function named my List which creates the following list and returns it (4 (7 22) “art” (“math” (8) 99) 100) […]