summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-12-02 15:49:07 -0800
committerAdam Bard <github@adambard.com>2013-12-02 15:49:07 -0800
commitaa4f6ac506650cfe36ace2f1dd2a70145d09a850 (patch)
tree2cf67f71549677004325f0db6f269cebf25c2f35 /haskell.html.markdown
parent53272e5f112aab68458e2faab153b3c61ada8cf0 (diff)
parent02b8d51897502dab5253176162d996ca05ea9cdd (diff)
Merge pull request #429 from sshine/master
[standard-ml/en-en] Mainly, adding this language as it doesn't exist.
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r--haskell.html.markdown10
1 files changed, 6 insertions, 4 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown
index 267b40af..341c013e 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -4,9 +4,9 @@ contributors:
- ["Adit Bhargava", "http://adit.io"]
---
-Haskell was designed as a practical, purely functional programming language. It's famous for
-its monads and its type system, but I keep coming back to it because of its elegance. Haskell
-makes coding a real joy for me.
+Haskell was designed as a practical, purely functional programming
+language. It's famous for its monads and its type system, but I keep coming back
+to it because of its elegance. Haskell makes coding a real joy for me.
```haskell
-- Single line comments start with two dashes.
@@ -401,7 +401,9 @@ Hello, Friend!
```
-There's a lot more to Haskell, including typeclasses and monads. These are the big ideas that make Haskell such fun to code in. I'll leave you with one final Haskell example: an implementation of quicksort in Haskell:
+There's a lot more to Haskell, including typeclasses and monads. These are the
+big ideas that make Haskell such fun to code in. I'll leave you with one final
+Haskell example: an implementation of quicksort in Haskell:
```haskell
qsort [] = []