Help language development. Donate to The Perl Foundation

POFile cpan:JNTHN last updated on 2019-02-20

t/03-quoting.t
use v6;
use Test;
use POFile :quoting;

is po-unquote(「\t\"\\\n」), 「\t"\\n」, 'Unquoting works';
is po-quote(「\t"\\n\」), 「\t\"\\\n\\」, 'Quoting works';

done-testing;