Reputation: 21
I'm developing a python library for domain specific languages and I want to include as many language definitions as possible. For regular expressions it's easy, since the format is the same across all implementation and there are several repositories out there like regexlib.
Is there any online library/repository available with loads of BNF/eBNF language examples (like regexlib.com)?
Upvotes: 2
Views: 521
Reputation: 11465
The Grammar Zoo from the Software Language Processing Suite project might help you.
Upvotes: 3