in reply to Is Text::FIGlet broken?

figify appears to return an array of results in list context (which print provides). Try print scalar $font... or print join($delim, $font...) instead.

You could see this with...

... { my @lines = $font->figify...; my $lines = $font->figify...; use DDP; p @lines; p $lines; } ...

at the appropriate place in your code.

--MidLifeXis

Replies are listed 'Best First'.
Re^2: Is Text::FIGlet broken?
by Anonymous Monk on Jun 25, 2015 at 18:52 UTC
    Thank you! My brain was not reaching into that zone. :)