AoC 2025 Day2

This commit is contained in:
2025-12-01 22:23:16 -08:00
parent 940d1ae8b1
commit 085c5ba329
3 changed files with 85 additions and 1 deletions

View File

@@ -4,7 +4,15 @@ import Prelude
import Node
import Aoc
run : String IO Unit
part1 : String Int
part2 : String Int
run : String -> IO Unit
run fn = do
putStrLn fn
text <- readFile fn
putStrLn $ "part1 " ++ show (part1 text)
putStrLn $ "part2 " ++ show (part2 text)
main : IO Unit
main = do