adventofcode/2023/preset/day/templates/perl/part2.t

14 lines
148 B
Perl
Raw Normal View History

2023-12-01 18:38:44 +00:00
use 5.38.0;
use Test2::V0;
use Path::Tiny;
use Part2;
my $input = path('input')->slurp;
is Part2::solution_2($input) => 'TODO';
2023-12-03 19:22:07 +00:00
done_testing;