14 lines
252 B
Plaintext
14 lines
252 B
Plaintext
|
#!/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();
|