Please complete following question using DrRacket app Implem
Please complete following question using Dr.Racket app.
Implement a Scheme function, pair, that takes two lists L and M, and returns a list in which each element Is a pair of corresponding elements. For example, (pair \'(fee fi) \' (fo fum)) returns \'((fee fo) (fi fum)). The two lists are required to have the same length. If not, return #f. If both lists are empty, return an empty list.Solution
