Tweak README

This commit is contained in:
Camden Dixie O'Brien 2024-11-03 13:20:26 +00:00
parent dad687216b
commit b7737fba39

6
README
View File

@ -7,8 +7,8 @@ so here we are.
Grammar
This engine is not going to be strictly supporting any standard
syntax; the expression syntax I intend to support follows.
The engine does not support any specific standard's syntax, unless by
coincidence. The grammar I've implemented for expressions is:
regex ::= sequence ( '|' sequence )*
sequence ::= term+
@ -23,7 +23,7 @@ syntax; the expression syntax I intend to support follows.
The build uses CMake. There are two scripts, build.sh and test.sh,
which will (much to everybody's shock) build the project and run the
tests. I use Clang but the code is ISO C11, it should compile just
tests. I use Clang but the code is ISO C11 so it should compile just
fine with GCC. You might need to faff with CMakeLists.txt to get it
to work with another compiler due to command-line flag nonsense.