adventofcode/aoc21

15 lines
283 B
Plaintext
Raw Normal View History

2021-12-01 22:46:07 +01:00
#!/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());
2021-12-01 22:46:34 +01:00
$application->add(new Day1());
2021-12-01 22:46:07 +01:00
$application->run();