LISP - Program to search a specific function through its parameters
For a course project I got to write a program in lisp. The program should contain the most important lisp functions, their input and output parameters and maybe optional parameters. For example: function - first, input - list, output - object (first member of list). The program should work in 2 different ways: You give the program the name of a function and it should return the function parameters. You enter function parameters and if a function with these parameters exists, it should return the name of the function. My questions: What would be the right way to approach a task like this in