Haskell is a lazy, pure functional programming language with non-strict semantics created in the late 1980’s by a committee of academics. It is named after logician Haskell Curry.
Learn Haskell Lesson 0 - download Glasgow Haskell Compiler (GHC)
Write your first program
Using a Haskell compiler, such as GHC, you can compile the code to a standalone executable. Create a source file hello.hs containing:
main = putStrLn "Hello, World!"
Read Article
Data Types
Char Ex: 'a'
Bool Ex: True
String "A list of Char's" Ex: "Hello!"
Int Ex: 25
Float Ex: 3.14
Read Article
In this video you will learn how to program in Haskell!