Another problem: passing a list of length two to a function that takes two non-arguments. For example,
  (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)


Reply via email to