Help for this page

Select Code to Download


  1. or download this
    for (;;) {
       print("Enter Number: ");
    ...
       last if $line =~ /^(?:d|done)\z/i;
       ...
    }
    
  2. or download this
    while ( (print "Enter Number: "), 
            (my $line=<STDIN>) !~ /^\s*d(?:one)?\s*$/i  
    ...
          chomp($line);
       ...
    }