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