Help for this page

Select Code to Download


  1. or download this
    my $obj = MyClass->new(INDEX_FOO => 43);
    
  2. or download this
    has 'INDEX_FOO'=> (
        is       => 'ro',
        default  => 42
        init_arg => undef,
    );
    
  3. or download this
    sub INDEX_FOO () { 42 }