in reply to Re: Popping from method that returns a list in one line
in thread Popping from method that returns a list in one line

Thanks. I was just writing a quick and dirty test for the module and ran across this issue.

ok $fp->get_data(pop @{($fp->get_parseable_files)}), 'can get data from file';

$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate Priest Vicar";
$nysus = $PM . ' ' . $MCF;
Click here if you love Perl Monks

Replies are listed 'Best First'.
Re^3: Popping from method that returns a list in one line
by shmem (Chancellor) on Aug 29, 2019 at 00:05 UTC

    which prolly should be

    ok $fp->get_data(pop @{[$fp->get_parseable_files]}), 'can get data fro +m file';
    perl -le'print map{pack c,($-++?1:13)+ord}split//,ESEL'
Re^3: Popping from method that returns a list in one line
by AnomalousMonk (Archbishop) on Aug 29, 2019 at 00:18 UTC

    Or maybe (untested):
        ok $fp->get_data(($fp->get_parseable_files)[-1]), 'can get data from file';


    Give a man a fish:  <%-{-{-{-<