Initial commit
This commit is contained in:
parent
6aba6f131e
commit
400d1cdc57
2 changed files with 17 additions and 1 deletions
16
day15/main.hs
Executable file
16
day15/main.hs
Executable 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"
|
|
@ -13,4 +13,4 @@ import Text.Pretty.Simple
|
|||
|
||||
main :: IO ()
|
||||
main = do
|
||||
putStrLn "Day x - Part 1"
|
||||
putStrLn ":: Day x - Part 1"
|
||||
|
|
Loading…
Reference in a new issue