Small terminal C++ program that calculates the FIRST SET from a context-free grammar (CFG)
More information about the FIRST SET
First-set
├── CMakeLists.txt
├── include
│ ├── GrammarParser.hpp # Parser the grammar from a file or input
│ ├── InitialSets.hpp # Core functions
│ └── PrintFunctions.hpp # Helper functions to print
├── README.md
├── src
│ ├── GrammarParser.cpp
│ ├── InitialSets.cpp
│ ├── main.cpp
│ └── PrintFunctions.cpp
└── test.txt