diff --git a/recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md b/recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md index 53b75d16a85afe1aaf71eb1d2aa215b4d4799bef..776b49c0c7fa2103d6ff62ad85cea2caaf5a4a35 100644 --- a/recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md +++ b/recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md @@ -10,7 +10,8 @@ similar, please let me know, so I can give credit where credit is due -- or disavow knowledge of that source (as the case may be). You are in the following subdirectory - ** `halfBakedCompiler` + + * `halfBakedCompiler` This code take mathematical expressions and builds an abstract syntax tree, a.k.a. an AST. It then dumps this AST as text. The parsing is equivalent to that in `interpreter` and `interpret++` diff --git a/recursiveDescentParsers/cplusplus/interpret++/README.md b/recursiveDescentParsers/cplusplus/interpret++/README.md index 1f1c217fd727cad8a8f1da68bce0979ef52dd508..7f987f3375482dbd3937da2ff3f67b9729f62f2d 100644 --- a/recursiveDescentParsers/cplusplus/interpret++/README.md +++ b/recursiveDescentParsers/cplusplus/interpret++/README.md @@ -10,7 +10,8 @@ similar, please let me know, so I can give credit where credit is due -- or disavow knowledge of that source (as the case may be). You are in the following subdirectory - ** `interpret++` + + * `interpret++` This code take mathematical expressions and evaluates them, i.e. it outputs numbers. It is the same as its sister folder `interpreter` as far as recursive descent parsing goes, but uses more C++ features and diff --git a/recursiveDescentParsers/cplusplus/interpreter/README.md b/recursiveDescentParsers/cplusplus/interpreter/README.md index 93a3776f3fbd425b21095fb0a637d56328eb1e57..f06c41a98398020e446f8e86cb792442e8ae4410 100644 --- a/recursiveDescentParsers/cplusplus/interpreter/README.md +++ b/recursiveDescentParsers/cplusplus/interpreter/README.md @@ -10,7 +10,8 @@ similar, please let me know, so I can give credit where credit is due -- or disavow knowledge of that source (as the case may be). You are in the following subdirectory - ** `interpreter` + + * `interpreter` This code take mathematical expressions and evaluates them, i.e. it outputs numbers.