view test/expression.x @ 401:994c00d55fd5

Remove files that are now in ppci
author Windel Bouwman
date Wed, 18 Feb 2015 22:56:42 +0100
parents e84047f29c78
children
line wrap: on
line source


%tokens '+' number '(' ')' '*'
%%

input: expression {return $1};

expression: term { return $1 }
          | expression '+' term {};

term: factor { return $1 }
    | term '*' factor { return $1 * $3 };

factor: '(' expression ')'
      | number {return $1.val};