Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my (@unsorted, @sorted);
while (<DATA>) {
chomp;
push @unsorted, [split(/-/, $_)];
}
@sorted = sort {${$a}[0] <=> ${$b}[0] ||
${$a}[1] <=> ${$b}[1] ||
${$a}[2] <=> ${$b}[2]} @unsorted;
foreach (@sorted) {
print "@{$_}\n";
}
__DATA__
2004-01-01
2003-06-19
2004-05-30
2002-09-05