by willwinger on 6/29/19, 5:25 AM with 1 comments
by watergatorman on 6/29/19, 6:24 AM
There is both left and right recursion in the definition of <number>, but this EBNF (Wirth notation) uses iteration only:
number = digit { digit } [ "." digit { digit } ] .