Skip to main content
Module

x/ohm_js/test/arithmetic.ohm

A library and language for building parsers, interpreters, compilers, etc.
Go to Latest
File
Arithmetic {
exp = addExp addExp = addExp "+" mulExp -- plus | addExp "-" mulExp -- minus | mulExp mulExp = mulExp "*" priExp -- times | mulExp "/" priExp -- divide | priExp priExp = "(" exp ")" -- paren | number number (a number) = number digit -- rec | digit}