Help for this page

Select Code to Download


  1. or download this
    sub new {
        my ($class, $args) = @_;
        $args->{value} = 23;
        return $class->SUPER::new($args);
    }
    
  2. or download this
    sub PREBUILD {
        my ($class, $args) = @_;
        return { %{$args}, value => 23 };
    }