This will be my attempt to solve the various Advent of Code 2021 problems with Common Lisp.
This is the runner for the Ada code. It will run every days’ tasks.
with AOC2021.Day01;
with AOC2021.Day02;
with AOC2021.Day03;
with AOC2021.Day04;
with AOC2021.Day05;
with AOC2021.Day06;
with AOC2021.Day07;
with AOC2021.Day08;
with AOC2021.Day09;
with AOC2021.Day10;
use AOC2021;
procedure Main is
begin
Day01.Run;
Day02.Run;
Day03.Run;
Day04.Run;
Day05.Run;
Day06.Run;
Day07.Run;
Day08.Run;
Day09.Run;
Day10.Run;
end Main;