On 09/07/2018 05:10 PM, Vadim Belman wrote:
Anyway, often googling with 'perl6 <something>' might provide one with even
more information than expected! 😀
The only pain-in-the-*** I find with Perl 6 is that Googling it
gives you hordes of Perl 5 hits.
I am just going to do this:
my %Month = ( "Jan"=>"01", "Feb"=>"02", "Mar"=>"03", "Apr"=>"04",
"May"=>"05", "Jun"=>"06",
"Jul"=>"07", "Aug"=>"08", "Sep"=>"09", "Oct"=>"10",
"Nov"=>"11", "Dec"=>"12" );
Which will give me a chance to play with my favorite kind of array.
:-)
Thank you for the tips!
-T