adventofcode-2020/template.hs

17 lines
483 B
Haskell
Raw Permalink Normal View History

2020-12-02 07:43:14 +01:00
#! /usr/bin/env -S"ANSWER=42" nix-shell
#! nix-shell -p ghcid
2020-12-10 12:30:34 +01:00
#! nix-shell -p "haskellPackages.ghcWithPackages (p: with p; [pretty-simple])"
2020-12-09 18:59:35 +01:00
#! nix-shell -i "ghcid -c 'ghci' -T main"
2020-12-01 08:16:49 +01:00
2020-12-09 18:59:35 +01:00
{-# OPTIONS_GHC -Wall -Wincomplete-uni-patterns #-}
2020-12-10 12:30:34 +01:00
{-# OPTIONS_GHC -Wno-unused-top-binds -Wno-unused-imports #-}
2020-12-13 14:15:04 +01:00
{-# OPTIONS_GHC -Wno-unused-matches #-}
2020-12-01 08:16:49 +01:00
{-# LANGUAGE OverloadedStrings #-}
2020-12-10 12:30:34 +01:00
import Debug.Trace (trace)
import Text.Pretty.Simple
2020-12-01 08:16:49 +01:00
main :: IO ()
main = do
2020-12-29 09:47:28 +01:00
putStrLn ":: Day x - Part 1"