A basic C++ program where you can choose from multiple pre-defined texts and fill in gaps madlibs style
Clone this repository and compile the madlibs.cpp file.
The put the .exe file in the same directory as /lib
You're Done!
Just add your own text files into lib.
- The File name must not contain any whitespaces and words shall be seperated by an underscore.
- Prompts that the user will fill in musst be written like this:
- The first word after a < and before > must be longer than 1 character.
- Before every < and after every > must be a whitespace
Good: "He's a <noun> ." "She <past verb> the tree."
Bad: "He's a <a noun>." "She<past verb> the tree."
This is my first program in c++ so the code might not be the cleanest. So if you have any ideas on how to improve the code or features to add please let me know.