Help for this page

Select Code to Download


  1. or download this
    use Class::Std;
    
    ...
        my $self = shift;
        @{$example_array_of{ident $self}} = @_;
    }
    
  2. or download this
    use Class::Std;
    
    ...
    
    sub get_example_array { return @example_array; }
    sub set_example_array { shift; @example_array = @_; }