Help for this page

Select Code to Download


  1. or download this
    if ($alphabet{$s} % 2) {
    
  2. or download this
    foreach $record (@contents)  {
    # where does @contents come from?
    ...
    # :)
    
        $s = substr($nice,0,1);
    
  3. or download this
    (defined $alphabet{$s} ? $alphabet{$s} : 0) % 2
    # use exists() if all values of %alphabet are defined