https://byorgey.wordpress.com/2021/09/08/implementing-hindley-milner-with-the-unification-fd-library/
3 lines
60 B
Text
3 lines
60 B
Text
apply w x = \y. \z. w + x + y + z ;
|
|
|
|
main = apply 1 2 3 4 ;
|