Parse EBNF: Difference between revisions

m
(Better link. Note that example is incomplete.)
m (→‎{{header|PicoLisp}}: Flag problem)
Line 12:
 
=={{header|PicoLisp}}==
{{improve|PicoLisp|The input description should be EBNF, not a parsed form of it.}}
<lang PicoLisp>(def 'expr 'ebnf '(term ((PLUS | MINUS) term) *))
(def 'term 'ebnf '(factor ((MULT | DIV) factor) *))
Anonymous user