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.
#!perl
use strict;
use warnings;
use Date::Calc qw(Day_of_Year);
my $xdate = "12/17/2004";
my ($month, $day, $year) = split /\//, $xdate;
my $jdate = Day_of_Year($year, $month, $day);
print "$xdate = $jdate\n";