in reply to Re^9: A short whishlist of Perl5 improvements leaping to Perl7
in thread A short whishlist of Perl5 improvements leaping to Perl7
But it's a Rosetta Stone fire-and-forget demo script and I doubt we'd see any other function added.
Or do you expect a need for sumerian_to_maya() soon? ;-)
> (BTW, I miss C++'s const keyword when coding in Perl).
why not ...
use Readonly; Readonly my %has => (key => value, key => value, ...);
If that's too ugly, we could try to define an attribute to do so.
my %has :ro = (key => value, key => value, ...);
Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^11: A short whishlist of Perl5 improvements leaping to Perl7
by eyepopslikeamosquito (Archbishop) on Nov 29, 2020 at 01:22 UTC |