in reply to Running code a certain amount of time

If you're just trying to limit the number of iterations in your loop, something this simple will work:

my $iterations = 60; while ( something_is_true and $iterations-- ) { do_something(); }