I have a problem that boils down to the following example:
let func a b c = printf "%s %s %s" a b c
let partial = func "a"
let something_that_returns_two_parameters = "b", "c"
something_that_returns_two_parameters |> partial
My expected result: func is called with "a" "b" "c". I can edit the last two lines. As much as possible?
source
share