Created
May 4, 2015 21:18
-
-
Save aphexmunky/ae68fab2450910ce2e94 to your computer and use it in GitHub Desktop.
My experience with Haskell
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> 2**2 | |
| 4.0 | |
| ghci> 2**2**2 | |
| 16.0 | |
| ghci> 2**2**2**2 | |
| 65536.0 | |
| ghci> 2**2**2**2**2 | |
| Infinity | |
| ghci> exit | |
| <interactive>:18:1: Not in scope: `exit' | |
| ghci> quit | |
| <interactive>:19:1: | |
| Not in scope: `quit' | |
| Perhaps you meant `quot' (imported from Prelude) | |
| ghci> :quit | |
| Leaving GHCi. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment