Initial commit

This commit is contained in:
EEva (JPotier) 2020-12-29 10:47:28 +02:00
parent 6aba6f131e
commit 400d1cdc57
2 changed files with 17 additions and 1 deletions

16
day15/main.hs Executable file
View File

@ -0,0 +1,16 @@
#! /usr/bin/env -S"ANSWER=42" nix-shell
#! nix-shell -p ghcid
#! nix-shell -p "haskellPackages.ghcWithPackages (p: with p; [pretty-simple])"
#! nix-shell -i "ghcid -c 'ghci' -T main"
{-# OPTIONS_GHC -Wall -Wincomplete-uni-patterns #-}
{-# OPTIONS_GHC -Wno-unused-top-binds -Wno-unused-imports #-}
{-# OPTIONS_GHC -Wno-unused-matches #-}
{-# LANGUAGE OverloadedStrings #-}
import Debug.Trace (trace)
import Text.Pretty.Simple
main :: IO ()
main = do
putStrLn ":: Day 15 - Part 1"

View File

@ -13,4 +13,4 @@ import Text.Pretty.Simple
main :: IO ()
main = do
putStrLn "Day x - Part 1"
putStrLn ":: Day x - Part 1"