Use ghci in notepad ++
I have the following function:
suma :: (Integer, Integer) -> (Integer)
suma (x,y) = x + y
Running this on the console:
*Main> suma (3,5)
I get the following error:
<interactive>:6:1: error:
* Variable not in scope: suma :: (Integer, Integer) -> t
* Perhaps you meant 'sum' (imported from Prelude)