in reply to Re: using pop a lot
in thread using pop a lot

Actually, it can still get shorter without splice():
$#array -= 5;

Liz

Update:
Although I would probably use Abigail-II's way, but without the fat comma:

splice @a,-5;