adventofcode-2020/template.hs

13 lines
353 B
Haskell
Raw 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-09 18:59:35 +01:00
#! nix-shell -p "haskellPackages.ghcWithPackages (p: with p; [])"
#! 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 #-}
{-# OPTIONS_GHC -Wno-unused-top-binds #-}
2020-12-01 08:16:49 +01:00
{-# LANGUAGE OverloadedStrings #-}
main :: IO ()
main = do
putStrLn "Day 1 - Part 1"