Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > ddfdf0b0f2e10c06cbb5bbb1f4ee8dd8 > files > 181

perl-Parse-Eyapp-1.182.0-3.mga4.x86_64.rpm

%token NUM = /(\d+)/
%token OP  = /([-+*\/])/

%%

T : $S { 1+int($S/2) }
;

S:
     $S x        { $S + 1 }
  |   x          { 1 }  
;

x:
     NUM
  |  x OP NUM
;
%%