Skip to content

Instantly share code, notes, and snippets.

@aphexmunky
Created May 4, 2015 21:18
Show Gist options
  • Select an option

  • Save aphexmunky/ae68fab2450910ce2e94 to your computer and use it in GitHub Desktop.

Select an option

Save aphexmunky/ae68fab2450910ce2e94 to your computer and use it in GitHub Desktop.
My experience with Haskell
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