mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
[haskell/en-en] Fixed 80-character margin
This commit is contained in:
parent
6e6d88e25f
commit
29f06c2d2f
@ -4,9 +4,9 @@ contributors:
|
|||||||
- ["Adit Bhargava", "http://adit.io"]
|
- ["Adit Bhargava", "http://adit.io"]
|
||||||
---
|
---
|
||||||
|
|
||||||
Haskell was designed as a practical, purely functional programming language. It's famous for
|
Haskell was designed as a practical, purely functional programming
|
||||||
its monads and its type system, but I keep coming back to it because of its elegance. Haskell
|
language. It's famous for its monads and its type system, but I keep coming back
|
||||||
makes coding a real joy for me.
|
to it because of its elegance. Haskell makes coding a real joy for me.
|
||||||
|
|
||||||
```haskell
|
```haskell
|
||||||
-- Single line comments start with two dashes.
|
-- 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
|
```haskell
|
||||||
qsort [] = []
|
qsort [] = []
|
||||||
|
Loading…
Reference in New Issue
Block a user