Help for this page

Select Code to Download


  1. or download this
    do {
        ++$element2;
    } until (substr($contigfile[$element2], 0, 1) eq '>');
    
  2. or download this
    perl -we 'do { print "hello\n" } until substr( undef, 0, 1 ) eq ">"'
    hello
    Use of uninitialized value in substr at -e line 1.
    ...
    Use of uninitialized value in substr at -e line 1.
    hello
    ...