Last active
August 29, 2015 14:04
-
-
Save rShetty/4d23995a586234322552 to your computer and use it in GitHub Desktop.
Haskell 101
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
* Basic Operations | |
* Prelude | |
* Booleans | |
* Comparison between different types | |
* Adding different types | |
* succ | |
* min, max | |
* Functions | |
* Higher Order | |
* if else | |
* LISTS | |
* Put two lists together ++ | |
* : and ++ | |
* List of lists | |
* !! index | |
* Comparing Lists | |
* head, init, tail, last | |
* take, drop, maximum, minimum, sum, product | |
* elem | |
*RANGES | |
* Step | |
* character ranges | |
* cycle, repeat | |
* LIST COMPREHENSIONS | |
* length | |
* multiple | |
* filters | |
* remove upper case | |
* TUPLES | |
* Any type | |
* List of Tuples | |
* fst, snd | |
* zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment