Scheme getting error is not a function
问题 ,i am doing my assignment in Scheme. I am using Scheme MIT Interpreter and https://repl.it/languages/scheme to test my code. First question is ; - in? procedure takes an element ‘el’ and a list ‘lst’. ; - It returns a boolean value. ; - When el is in lst it returns true, otherwise returns false. ; - Examples: ; (in? 3 ’(2 5 3)) ; evaluates to #t ; (in? 2 ’(1 (2) 5)) ; evaluates to #f ; - If lst is not a list, it produces an error.. my code is (define lst()) (define el()) (define in? (lambda