Click Here and click "Download Core (64 bit)". Then follow the instructions until complete. To see if the instillation was successful open the command prompt (if windows) or terminal (if mac) and type the following:
ghciYou should then be prompted with the following:
Online sources we will be using:
Below describes how to read each of the meeting files:
- operators.hs The basic Haskell operators
- function_intro.hs An intro to functions in Haskell
- lists.hs Creating lists in Haskell and useful list functions
- list_comprehensions.hs An intro to list comprehensions
- types.hs In-depth on Haskell types
- tuples.hs Creating and using Tuples
- generics.hs Generic Types
- typeclass.hs In-depth on Haskell TypeClasses
- pattern_matching_intro.hs An Introduction to Pattern Matching
- pattern_matching_functions.hs Using Pattern Matching in Functions
- pattern_matching_guards.hs Using guard clauses in pattern matching
- let_where.hs Using let and where
- quickSort.hs Implementing QuickSort
- mergeSort.hs Implementing MergeSort