in reply to Re^3: Merge 2 strings like a zip [unzip()]
in thread Merge 2 strings like a zip

print for unzip('AaBbCcDdEeFGHIJ', 5);

could be written more explicitly also as

for (unzip('AaBbCcDdEeFGHIJ', 5)) { print $_; }
The Perl documentation mentions this here: Statement Modifiers

Replies are listed 'Best First'.
Re^5: Merge 2 strings like a zip [unzip()]
by Anonymous Monk on Jul 09, 2015 at 08:24 UTC

    print for unzip('AaBbCcDdEeFGHIJ', 5); could be written more explicitly also as for (unzip('AaBbCcDdEeFGHIJ', 5)) { print $_; } The Perl documentation mentions this here: Statement Modifiers

    I think you 're looking for verbosely in lieu of explicitly

    I could be wrong :)