in reply to
Re: use feature 'unicode_strings'
in thread
use feature 'unicode_strings'
That was a pretty good explanation. What happens if I combine
use utf8;
and
use 5.012;
?
Comment on
Re^2: use feature 'unicode_strings'
Replies are listed 'Best First'.
Re^3: use feature 'unicode_strings'
by
ikegami
(Patriarch)
on Mar 06, 2010 at 21:09 UTC
You'll tell Perl your source in UTF-8 encoded, you want a version check for 5.12, and you want 5.12's backward-incompatible changes.
[reply]
In Section
Seekers of Perl Wisdom