It's not a practically important issue, but could you please provide me with an example of tacit programming in F# where my `pointless' functions can have multiple arguments (not in form of list or tuple);
And secondly, where those functions can manipulate a complex data structure. I'm trying to manage it in FSharp interactive, but have no success yet.
Huh.. I've managed to construct something:
(fun _ -> (fun _ -> (+))) 333 222 111 555
Is that right way?
UPDATE:
(fun _ -> (fun _ -> (+))) "a" "b" "c" "d";;
val it : string = "cd"