Question: Write How CAR and CDR functions work in function programming Language. DEFINE (member atm a_list) (COND ((NULL? a_list) #F) ((EQ? atm (CAR a_list)) #T) ((ELSE
Write How CAR and CDR functions work in function programming Language.
DEFINE (member atm a_list)
(COND
((NULL? a_list) #F)
((EQ? atm (CAR a_list)) #T)
((ELSE (member atm (CDDR a_list)))
))
What is purpose of this member function?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
