adventofcode/2018/08/sol2.pl

17 lines
203 B
Perl
Raw Permalink Normal View History

2018-12-08 21:26:34 +00:00
use 5.20.0;
use warnings;
use experimental qw/
signatures
postderef
/;
use lib './lib';
use Entry;
my @input = split / /, <>;
my $entry = Entry->new( stream => \@input );
say $entry->value;