Haskell may refer to:
Haskell is one of several locations in the United States:
Haskell is a surname:
Haskell is a given name:
| Haskell | |
|---|---|
| Popularity | Popular names page |
| This disambiguation page lists articles associated with the same title. If an internal link led you here, you may wish to change the link to point directly to the intended article. |
Haskell is in the Green Country region of Oklahoma.
| This article is an outline and needs more content. It has a template, but there is not enough information present. Please plunge forward and help it grow! |
Category: Outline articles
Contents |
|
Please help develop this page
This page was created, but so far, little content has been added. Everyone is invited to help expand and create educational content for Wikiversity. If you need help learning how to add content, see the editing tutorial and the MediaWiki syntax reference. To help you get started with content, we have automatically added references below to other Wikimedia Foundation projects. This will help you find materials such as information, media and quotations on which to base the development of "Haskell" as an educational resource. However, please do not simply copy-and-paste large chunks from other projects. You can also use the links in the blue box to help you classify this page by subject, educational level and resource type. |
|
Hello, and welcome to the future home of the Haskell Computer Programming Course. We will be learning about the Haskell programming language.
All contributions are appreciated. Even newcomers are welcome to make changes, remember Be bold !
Contents |
|
Singular |
Plural |
Haskell
|
|
|

Haskell is a functional programming language. If you have programmed before and would like to see a little bit of how Haskell works and is different from other programming languages, you can get an overview.
Haskell is unique for two reasons. The first is that it is purely functional. If you have a function and you call it twice in two different places with the same arguments then it will return exactly the same value both times. Secondly, Haskell provides a very modern type system which incorporates features like typeclasses and generalized algebraic data types. (We don't expect you to know what these terms mean for now, but we do hope they'll be rolling smoothly off your tongue by the time you are done with this book.)
So, why do Haskellers like the language then? Is it just because we like using things that are unique and modern? No, Haskell programmers enjoy their work because dealing with just pure functions makes it so much easier to understand our programs and prove them correct. Moreover, having an advanced type system helps us catch our mistakes, both the silly and profound ones.
In this book we aim to introduce you both to the Haskell language, from the very basics to its most advanced features, and to computer programming in general. Seasoned programmers, we urge you to be especially patient with this process. In all likelihood, the languages you are most familiar with differ greatly from Haskell, and habits from those languages might make it more difficult to understand how things work: simple, but different. So treat this as an adventure, a whole different world, seeing programming through the warped and mathematical mindset of a functional programmer.
The book is divided into three sections, namely, the Beginner's Track, the Advanced Track, and Practical Haskell. The last is designed to cover the more day-to-day issues, and to be readable with simply the knowledge of the Beginner's Track.
Please contribute! Everyone, regardless of Haskell competency, can help out. Spend five minutes improving a module and save someone else hours of time. Check out the notes for contributors.
This section will introduce you to the very basics of the language and some of the more frequently used libraries. This will enable you to build simple programs and prepare you for the advanced track.
Haskell Basics
edit this
chapter
|
Elementary Haskell
edit this
chapter
|
Intermediate Haskelledit this
chapter
|
Monads
edit this
chapter
|
This section will introduce wider functional programming concepts such as different data structures and type theory. It will also cover more practical topics like concurrency.
Advanced Haskell
edit this
chapter
|
Fun with Types
edit this
chapter
|
Wider Theory
edit this
chapter
|
Haskell Performance
edit this
chapter
|
This section covers the more day-to-day issues of working with Haskell, issues such as making use of the standard library, building graphical interfaces or working with databases. You should be able to jump directly to this section from the basic track.
Libraries Referenceedit this
chapter
|
General Practices
edit this
chapter
|
Specialised Tasks
edit this
chapter
|
|
|