You are here

function EvalMathStack::push in Webform Calculator 7

File

./evalmath.class.php, line 371

Class

EvalMathStack

Code

function push($val) {
  $this->stack[$this->count] = $val;
  $this->count++;
}