Skip to content

Commit

Permalink
module slide
Browse files Browse the repository at this point in the history
  • Loading branch information
astro committed Aug 28, 2012
1 parent 5f9bbe4 commit 44d2db0
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions index.html
Expand Up @@ -94,7 +94,7 @@ <h2>Paket-Management mit Cabal</h2>
* Syntax, Currying, Typen, Lazyness  (astro)  (min. 30min)
-->
<div class="slide">
<h1>Syntax</h2>
<h1>Syntax</h1>
</div>
<div class="slide">
<h2>Funktionen</h2>
Expand Down Expand Up @@ -184,10 +184,6 @@ <h2>where</h2>

<p class="note">($)</p>
</div>

<!--
module
-->
<div class="slide">
<h2>Lambdas</h2>
<p class="note">Num: Interface für (+), (*)</p>
Expand Down Expand Up @@ -265,6 +261,19 @@ <h2>Classes &amp; Instances</h2>
instance Num Double -- Defined in `GHC.Float'</pre>
</div>

<div class="slide">
<h2>Module</h2>
<p>Am Beginn von Quellcode-Dateien:</p>
<pre class="sh_haskell">module MeinKram where</pre>
<pre class="sh_haskell">module Main (main) where

import MainKram
import qualified Data.Text as T

fnord :: T.Text
fnord = T.pack "fnord"</pre>
</div>

<!--
* Monads, Functors, Applicatives (maloi) (30 min)
-->
Expand Down Expand Up @@ -542,6 +551,7 @@ <h2>Functor - I break the law </h2>
* Template Haskell (maloi) (20min)
* Profiling (astro) (15min)
* Parallel Haskell (maloi) (10min)
* Foreign (astro) (5min)
* Yesod:
 * Conduits (astro) (15 min)
Expand Down

0 comments on commit 44d2db0

Please sign in to comment.