We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8287430 commit 82dc242Copy full SHA for 82dc242
haskell/function_application.hs
@@ -0,0 +1,5 @@
1
+f a + b -- meaning f(a) + b, rather than f(a + b) -- `f` apply to `a`
2
+f a b -- f(a, b)
3
+f (g x) -- f(g(x))
4
+f x (g y) -- f(x, g(y))
5
+f x * g y -- f(x) * g(y)
0 commit comments