Help for this page

Select Code to Download


  1. or download this
    while (<DATA>)
    {
      print if 2 .. 3;
    }
    
  2. or download this
    while (<DATA>)
    {
      print if 2 .. 4;
    }
    
  3. or download this
    while (<DATA>)
    {
      print if 1 .. /end/;
    }
    
  4. or download this
    while (<DATA>)
    {
      print if 2 .. /end/;
    }