Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    ) {
        print "I don't know why this is printing.\n";
    }
    
  2. or download this
    if (grep {$key eq $_} qw(ID TITLE GENE CYTOBAND LOCUSLINK CHROMOSOME S
    +COUNT)) {
      print "This didn't print, did it?\n";
    }
    
  3. or download this
    if (exists $is_valid{$key}) {
      print "Key '$key' is a valid key\n";
    }