Help for this page

Select Code to Download


  1. or download this
    my $ref = 7;
    
    if ($ref = 1 .. 8) {
        ...code....
    }
    
  2. or download this
    if ($ref =~ 1..8)
    if ($ref = 1..8)
    if ($ref == 1 .. 8)
    if ($ref =~ (1 .. 8))
    etc...