Updated table of contents

This commit is contained in:
Thomas Avé 2017-01-30 16:54:29 +01:00
parent 1f4a00af06
commit 4a24fd1589
1 changed files with 2 additions and 0 deletions

View File

@ -5,11 +5,13 @@ A language agnostic parser generator
## Table Of Contents
* [Introduction](#introduction)
* [Requirements](#requirements)
* [Used dependencies](#used-dependencies)
* [Building](#building)
* [Getting started](#getting-started)
* [More examples](#more-examples)
* [Tested with](#tested-with)
* [Authors](#authors)
* [License](#license)
## Introduction
Parsodus is a language agnostic parser generator. Which means that it uses a description of a grammar in a kind of BNF notation, and outputs source files for a parser (which can be in any language for which a backend has been built, currently only c++), using a specified parsing algorithm (currently 4 kinds of LR parser have been implemented). This parser can then be augmented with rule handling to build an abstract structure representing the data, doing computations immediately, or anything else you can imagine.