Updated readme
authorNeil Smith <neil.git@njae.me.uk>
Sun, 1 Dec 2019 09:02:43 +0000 (09:02 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Sun, 1 Dec 2019 09:02:43 +0000 (09:02 +0000)
README.html
README.md

index 218a7f9f03ee743992014478c6bf33997296d399..4680985b3e88c2857a65071527aa1009c9f59821 100644 (file)
@@ -4,13 +4,13 @@
   <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" />
   <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">
   <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>
 </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>
@@ -38,7 +38,7 @@
 <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>
 <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=&quot;-fprof-auto -rtsopts&quot;</code></pre>
 <p>then run with</p>
 <p>To profile, use</p>
 <pre><code>stack build --executable-profiling --library-profiling --ghc-options=&quot;-fprof-auto -rtsopts&quot;</code></pre>
 <p>then run with</p>
index 1d363c8c15d5bc57d64586abd309815ac6c02340..f148061eac93b81598223e6e14662880c472f4f4 100644 (file)
--- a/README.md
+++ b/README.md
@@ -60,7 +60,7 @@ stack exec -- advent01 +RTS -K0 -RTS
 
 Run interactively with
 ```
 
 Run interactively with
 ```
-stack ghci advent-of-code:exe:advent01
+stack ghci advent01
 ```
 
 To profile, use 
 ```
 
 To profile, use