This commit is contained in:
rhiannon morris 2022-12-02 07:19:46 +01:00
parent 88072169a0
commit 45a54fe520
3 changed files with 122 additions and 3 deletions

2
aoc.m
View file

@ -31,6 +31,8 @@ main2(!IO) :-
:- pred solution(int::in, sol::out(sol)) is semidet.
:- import_module day1.
solution(1, day1.run).
:- import_module day2.
solution(2, day2.run).
:- pred run_day(int, part, list(string), univ).
:- mode run_day(in, in, in, out) is cc_multi.