Help for this page

Select Code to Download


  1. or download this
    $ perl -E 'our $V = q{0.1_1}; $V = eval $V; say $V'
    0.11
    
  2. or download this
    $ perl -E 'our $V = q{0.11}; say $V'
    0.11
    
  3. or download this
    sub new {
        my ($class, %attr) = @_;
        ...
    }
    
  4. or download this
    sub queue {
        my $Q = ref $_[0] eq 'GLOB' ? shift : \*STDOUT;
        my @list = @_;
        ...
    }