this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 10 lines 278 B view raw
1module Main where 2 3import AocDay06 4import Data.List.Split 5 6main :: IO () 7main = do 8 inputStr <- readFile "input.txt" 9 putStr $ "Code 1: " ++ codeFromLines (init $ splitOn "\n" inputStr) ++ "\n" ++ 10 "Code 2: " ++ codeFromLines2 (init $ splitOn "\n" inputStr) ++ "\n"