5 ms·
I wonder if there is some programming language that supports combining both styles: - A linear control flow - Named Blocks with explicit, named, typed paramete
by olav 3y ago
I wonder if there is some programming language that supports combining both styles:
- A linear control flow
- Named Blocks with explicit, named, typed parameters and return values
I understand that one can use anonymous functions, immediately called to simulate
this style.
- pushfoo 3y agoIf I understood you correctly, the ML family seems to come closest, especially Elm and F#'s use of |> syntax.