im trying to get a lambda function from this list of lists '((0 4) (lambda (x) (+ x 100)))
if i do (car (cdr list) ) i get (lambda (x) (+ x 100)), and im using (car (cdr list) ) to get the lambda function to the parameters of another function that uses it but i get the error
application: not a procedure;
expected a procedure that can be applied to arguments
given: (lambda (x) (+ x 100))
If instead of (car (cdr list) ) i write (lambda (x) (+ x 100)) it works, but i need to get it from the second element of the list of lists