X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=README.html;h=7bffdaa8d1e090570dc1fd0cebb1d75d9d42f768;hb=a792a40d6c4b7cf09faa9fb5d04d27f71d2a49a7;hp=0877da16deb973b6f923b24295b45e523754ff92;hpb=98fb1acf36bb318266a95284760866faff505765;p=advent-of-code-16.git diff --git a/README.html b/README.html index 0877da1..7bffdaa 100644 --- a/README.html +++ b/README.html @@ -1,12 +1,32 @@ -

-

Advent of Code 2016

+ + + + + + + Advent of Code 2016 + + + + +

Code to solve the Advent of Code puzzles. This year, I'm trying to use the puzzles as a prompt to learn Haskell.

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

I'm using the basic Haskell Platform installation (install with

$ sudo aptitude install haskell-platform

).

+

I'm also using the MissingH and Parsec-number libraries (install with

+
$ cabal install MissingH
+$ cabal install parsec-number
+

)

Compile the code with

-
ghc -o advent01 advent01.hs
+
ghc --make advent01.hs

then run it as

advent01
+

Build this readme file wth

+
pandoc -s README.md > README.html

(Using the Modest styles.)

+ +