
Math::Expr::VarSet - Represents a set of variables and there values

require Math::Expr::VarSet;
$s=new Math::Expr::VarSet;
$s->Set('a', 7);
$s->Get('a');

Used to represent variables with values and substitutions.

Create a new VarSet object.
Sets $var to $val.
Inserts all variables from $set into this object
Returns a stringrepresentation of the set, usefull for debugging.
Returns the value of $var.