in reply to Re^2: Calculate date with daysin thread Calculate date with days
A simple use case
#!/usr/bin/perl use Data::Dumper; use strict; use warnings; my @list = qw (hi there); print Dumper(@list); [download]
Output
$VAR1 = 'hi'; $VAR2 = 'there'; [download]