15 (\ x -> x^2)
Haskell uses a backslash for lambdas because they sorta look like lambdas if you squint hard enough, and because their keyboards don't have lambda keys.
Also, the above lambda is equivalent to (^2), which is much more concise. Haskell almost certainly expands it to the above syntax internally, though.