adventofcode/aoc21

14 lines
252 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());
$application->run();