Help for this page

Select Code to Download


  1. or download this
    my $x = 0xFF;
    
    ...
    __END__
    
    11100111
    
  2. or download this
    $x |= 0x14; # 20;
    
    __END__
    
    11110111
    
  3. or download this
    sub queue {
        my ($self, $q) = @_;
    ...
    
        return $self->{queue};
    }