Add basic framework

This commit is contained in:
2021-12-01 22:46:07 +01:00
commit 17e575d38b
13 changed files with 5646 additions and 0 deletions

13
aoc21 Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env php
<?php
require __DIR__.'/vendor/autoload.php';
use AdventOfCode21\Day1;
use AdventOfCode21\Puzzle;
use Symfony\Component\Console\Application;
$application = new Application();
$application->add(new Puzzle());
$application->run();