- or download this
use experimental 'refaliasing';
my $rvars = { foo=>"bar" };
\my %vars = $rvars; # alias
print $vars{foo}, "\n"; # prints "bar"
$vars{abc} = "xyz"; # modifies $hashref's contents
- or download this
use Path::Tiny;
use Time::Piece;
...
localtime->strftime("%d-%m-%Y-%H-%M-%S.txt") )->touchpath;
# ...
}
- or download this
use Path::Tiny;
use Time::Piece;
...
localtime->strftime("%d-%m-%Y-%H-%M-%S.txt") )->touchpath );
# ...
}