Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    while (my $ar1 = $q->dequeue_nb()) {
        print "array reference : $ar1\n@$ar1\n";
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    while (my $ar1 = $q->dequeue()) {
        print "array reference : $ar1\n@$ar1\n";
    }