Help for this page

Select Code to Download


  1. or download this
      sleep 60;
      my $status;
    ...
      while(!(($status = get_value()) eq 'initializing')) {
        sleep 10;
      }
    
  2. or download this
    use strict;
    use warnings;
    ...
      return 'initializing' if $count < 5;
      return 'ok';
    }