adventofcode2018/1/1.pl
2018-12-04 22:46:54 +00:00

13 lines
105 B
Perl

#!/usr/bin/perl
use strict;
my $start = 0;
while (<>) {
chomp;
$start += $_;
}
print $start . "\n";