Help for this page

Select Code to Download


  1. or download this
    # sub new { bless \pop, shift }
    sub new { my $self = pop; bless \$self, shift }
    
  2. or download this
    MyNumber->new([ 0 .. 100 ]);
    MyNumber->new({ test => 1});
    MyNumber->new(*STDOUT);