<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="generator" content="pandoc" />
- <title>Advent of Code 2018</title>
+ <title>Advent of Code 2019</title>
<style type="text/css">code{white-space: pre;}</style>
<link rel="stylesheet" href="modest.css" type="text/css" />
</head>
<body>
<div id="header">
-<h1 class="title">Advent of Code 2018</h1>
+<h1 class="title">Advent of Code 2019</h1>
</div>
<p>Code to solve the <a href="http://adventofcode.com/2019/">Advent of Code</a> puzzles. This year, I'm using the puzzles to develop my skills in <a href="https://wiki.haskell.org/Haskell">Haskell</a>.</p>
<p><a href="http://learnyouahaskell.com/chapters">Learn you a Haskell</a>, <a href="https://www.haskell.org/tutorial/index.html">Introduction to Haskell 98</a>, and <a href="https://hackage.haskell.org/">Hackage</a> are good resources.</p>
<p>If you want to pass in additional RTS parameters, do it like this:</p>
<pre><code>stack exec -- advent01 +RTS -K0 -RTS</code></pre>
<p>Run interactively with</p>
-<pre><code>stack ghci advent-of-code:exe:advent01</code></pre>
+<pre><code>stack ghci advent01</code></pre>
<p>To profile, use</p>
<pre><code>stack build --executable-profiling --library-profiling --ghc-options="-fprof-auto -rtsopts"</code></pre>
<p>then run with</p>