From 6d3d9662f4481a1dae36c7ab9705b376bc7c7025 Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Sun, 1 Dec 2019 09:02:43 +0000 Subject: [PATCH] Updated readme --- README.html | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.html b/README.html index 218a7f9..4680985 100644 --- a/README.html +++ b/README.html @@ -4,13 +4,13 @@ - Advent of Code 2018 + Advent of Code 2019

Code to solve the Advent of Code puzzles. This year, I'm using the puzzles to develop my skills in Haskell.

Learn you a Haskell, Introduction to Haskell 98, and Hackage are good resources.

@@ -38,7 +38,7 @@

If you want to pass in additional RTS parameters, do it like this:

stack exec -- advent01 +RTS -K0 -RTS

Run interactively with

-
stack ghci advent-of-code:exe:advent01
+
stack ghci advent01

To profile, use

stack build --executable-profiling --library-profiling --ghc-options="-fprof-auto -rtsopts"

then run with

diff --git a/README.md b/README.md index 1d363c8..f148061 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ stack exec -- advent01 +RTS -K0 -RTS Run interactively with ``` -stack ghci advent-of-code:exe:advent01 +stack ghci advent01 ``` To profile, use -- 2.34.1