Help for this page

Select Code to Download


  1. or download this
    use Bit::Vector::Array;
    bva(my @my_array);
    $#my_array=15; 
    print @my_array;
    
  2. or download this
    use Bit::Vector::Array;
    bva(my @my_array);
    @my_array=15;
    print @my_array;