Files
newt/aoc2024/DayXX.newt
2024-12-05 16:13:12 -08:00

18 lines
229 B
Agda

module DayXX
import Prelude
import Node
import Aoc
run : String -> IO Unit
run fn = do
putStrLn fn
text <- readFile fn
putStrLn text
main : IO Unit
main = do
run "aoc2024/dayXX/eg.txt"
run "aoc2024/dayXX/input.txt"