Skip to content

Latest commit

 

History

History
58 lines (58 loc) · 1.62 KB

aoc2021.org

File metadata and controls

58 lines (58 loc) · 1.62 KB

Advent of Code 2021 [23/25]

This will be my attempt to solve the various Advent of Code 2021 problems with Common Lisp.

Some helper stuff

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;