Math-SymbolicX-Calculator-Interface-Web

 view release on metacpan or  search on metacpan

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

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

    my %args = @_;

    my $self = {
        calc             => $args{calculator}
                            || Math::SymbolicX::Calculator->new(),
    };
    bless $self => $class;

    return $self;
}

=head2 execute_expression

Runs a single expression.

=cut

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

( run in 1.309 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )