in reply to Re: use utf8 pragma with moo
in thread use utf8 pragma with moo
Thank you very much for "warn Dumper sort keys %INC" - this is brilliant.
The problem with namespace:
use utf8; use feature qw(signatures); no warnings qw(experimental::signatures); use Moo; use namespace::clean; sub BUILD($self) { $self->_set_count(1); }
An error: "The signatures feature is experimental ..."
Should I place no warnings after namespace::clean or there are other solutions? Maybe with namespace::clean -except?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: use utf8 pragma with moo
by Corion (Patriarch) on Jan 15, 2022 at 08:50 UTC | |
by syphilis (Archbishop) on Jan 15, 2022 at 13:47 UTC | |
by Corion (Patriarch) on Jan 16, 2022 at 07:10 UTC | |
by syphilis (Archbishop) on Jan 16, 2022 at 09:35 UTC | |
by AlexP (Pilgrim) on Jan 15, 2022 at 08:58 UTC |