Help for this page

Select Code to Download


  1. or download this
        ($cur, $next) = ( $next, scalar( <IN>));
    
  2. or download this
        @queue[0 .. 4 ] = ( @queue[ 1 .. 3], scalar( <IN> ));
    
  3. or download this
    #!/usr/bin/perl -T
    use strict;
    ...
        ($cur, $next) = ( $next, scalar( <IN>));
        last if not defined $cur;
    }