-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
27 lines (27 loc) · 1.33 KB
/
Copy pathresources.html
File metadata and controls
27 lines (27 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE HTML>
<html>
<head>
<title>Resources</title>
<link rel="stylesheet" href="haskelltalk.css" type="text/css">
</head>
<body>
<div id="navigation">
<a href="outline.html"> Outline </a>
</div>
<h1>Resources for the Curious</h1>
<ul id="resources-list">
<li><a href="https://www.haskell.org"> https://www.haskell.org </a></li>
<li><a href="https://www.haskell.org/tutorial/functions.html">https://www.haskell.org/tutorial/functions.html</a> ← Haskell.org's Functions Tutorial
<li><a href="https://www.haskell.org/onlinereport/standard-prelude.html">
https://www.haskell.org/onlinereport/standard-prelude.html</a> ← source of Prelude and a great example of how to write a module</li>
<li><a href="http://learnyouahaskell.com/">
http://learnyouahaskell.com/</a> ← great way to learn</li>
<li><a href="http://book.realworldhaskell.org/">
http://book.realworldhaskell.org/</a> ← another great book!</li>
<li><a href="http://slides.com/bss/scala-vs-haskell#/">
http://slides.com/bss/scala-vs-haskell#/</a> ← a decent comparison of Scala and Haskell</li>
<li><a href="http://haskellbook.com/">
http://haskellbook.com/</a> ← Modern Haskell. Programming from first principles.</li>
</ul>
</body>
</html>