adventofcode-2020/template.hs

17 lines
483 B
Haskell
Raw Normal View History

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