Help for this page

Select Code to Download


  1. or download this
    package Equation_Problem; 
    use Moose;
    ...
            via => 'A * B',
        },
    );
    
  2. or download this
    package Equation_Problem; 
    use Moose;
    ...
        my $self = shift;
        $self->mass * $self->velocity;
    }