Created
July 23, 2015 20:16
-
-
Save nkaretnikov/96d5bf5c49c1f4edd5c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GHCi, version 7.10.1: http://www.haskell.org/ghc/ :? for help | |
Prelude> let f x y = x + y | |
Prelude> f 2 _w | |
{- | |
<interactive>:5:5: | |
Found hole ‘_w’ with type: a | |
Where: ‘a’ is a rigid type variable bound by | |
the inferred type of it :: a at <interactive>:5:1 | |
Relevant bindings include it :: a (bound at <interactive>:5:1) | |
In the second argument of ‘f’, namely ‘_w’ | |
In the expression: f 2 _w | |
In an equation for ‘it’: it = f 2 _w | |
-} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment