Skip to content

Instantly share code, notes, and snippets.

View david-err's full-sized avatar

David R david-err

  • The Hague, Netherlands
View GitHub Profile
@david-err
david-err / Expressions.php
Last active September 18, 2020 06:51 — forked from ircmaxell/Expressions.php
A math parser and evaluator implementation
<?php
class Parenthesis extends TerminalExpression {
protected $precidence = 6;
public function operate(Stack $stack) {
}
public function getPrecidence() {
return $this->precidence;