5 lines
63 B
Haskell
5 lines
63 B
Haskell
|
|
func f = f 1 2
|
||
|
|
|
||
|
|
main = print $ func (\x y -> x+y)
|
||
|
|
-- output: 3
|