Help for this page

Select Code to Download


  1. or download this
    undef @data;
    
  2. or download this
    for (my $i=0;$i<@data;$i++)
    {
       undef @{$data[$i]);
    }
    
  3. or download this
    for (my $i=0;$i<@data;$i++)
    {
       $data[$i] = ();
    }