(define h (lambda (x y) (display x) (display y))) and passing (list 1 2) to it.
It is in the same context as before: I want to build functions like in Haskell
f((1, 2), 3) where f = \((x, y), z) -> (x, y, z) --> (1,2,3)
(define h (lambda (x y) (display x) (display y))) and passing (list 1 2) to it.
It is in the same context as before: I want to build functions like in Haskell
f((1, 2), 3) where f = \((x, y), z) -> (x, y, z) --> (1,2,3)