- or download this
use strict;
use warnings;
use feature qw(say);
use Data::Dump;
- or download this
my $moyr = "12/2014";
my ( $month, $year ) = split /\//, $moyr;
say for ( $month, $year );
- or download this
my %csga;
...
close $in;
dd \%csga;
- or download this
open( my $in, "<", q(cc.txt) ) || die $!;
...
}
close $in;