Mercurial > lcfOS
view test/expression.x @ 339:6ee17c4dd6b8
Increase timeout
author | Windel Bouwman |
---|---|
date | Fri, 21 Feb 2014 13:35:07 +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};