Skip to content

Latest commit

 

History

History
59 lines (59 loc) · 1.64 KB

aoc2020.org

File metadata and controls

59 lines (59 loc) · 1.64 KB

Advent of Code 2020 [25/25]

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

Some helper stuff

This is the runner for the Ada code. It will run every days’ tasks.

with AOC2020.Day01;
with AOC2020.Day02;
with AOC2020.Day03;
with AOC2020.Day04;
with AOC2020.Day05;
with AOC2020.Day06;
with AOC2020.Day07;
with AOC2020.Day08;
with AOC2020.Day09;
with AOC2020.Day10;
with AOC2020.Day13;
use AOC2020;
procedure Main is
begin
   Day01.Run;
   Day02.Run;
   Day03.Run;
   Day04.Run;
   Day05.Run;
   Day06.Run;
   Day07.Run;
   Day09.Run;
   Day10.Run;
   Day13.Run;
end Main;