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
( run in 0.247 second using v1.01-cache-2.11-cpan-3b35f9de6a3 )