Math-SymbolicX-Calculator

 view release on metacpan or  search on metacpan

lib/Math/SymbolicX/Calculator.pm  view on Meta::CPAN

=cut

sub new {
    my $proto = shift;
    my $class = ref($proto)||$proto;

    my $self = {
        stash => {},
        history => [],
    };
    bless $self => $class;

    return $self;
}


=head2 new_command

This method is a short-cut to
L<Math::SymbolicX::Calculator::Command>'s C<new> method and
creates a new command object which can be executed using the

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.844 second using v1.00-cache-2.02-grep-82fe00e-cpan-503542c4f10 )