You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//function 1/x return 0 for x=0 !!! How to avoid this
replace line number 315
// if ($op2 == 0) return $this->trigger("division by zero");
//by this
if($op2 == 0){$stack->push(NAN); break;}