RIght now you can only add functions by calling evaluate, there should be a way to add function like this: ``` php $math = new EvalMath(); $math->fn['square'] = function($x) { return $x*$x; }; $math->evaluate('square(10)'); ```