Question

I just learned from another question that Haskell is called a curried programming language because it applies function currying by default. What are other languages that display this behavior?

Était-ce utile?

La solution

Of the less esoteric languages it is mainly Haskell:

f x y z = x + y * z
g = f 4
r = g 7 8

OCaml and F#:

let f x y z = x + y * z
let g = f 4
let r = g 7 8

and to a lesser extent SML (where libraries use currying less):

fun f x y z = x + y * z
val g = f 4
val r = g 7 8
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top