Next You can't get there from here 22

"Is my program going to finish?"

        sub sometimes_i_finish {
          my $arg = shift;
          until ($arg == 0) { $arg -= 2 }
          return $arg;
        }

Next Copyright © 2005 M. J. Dominus