- Fill in your name and GitHub username on top.
- Use the Notes section to add any notes to the instructor.
- The main lab description can be found here: https://maryash.github.io/135/labs/lab_07.html
For this lab, it is up to you how to structure and write everything
and as such this repo starts mostly empty. It includes doctest.h
in
case you plan to use it for testing but for this lab doctest.h
based
tests are not required.
Even though you will decide on what and how to implement your solution, the lab must include the following:
- There must be a
Makefile
that has at least the following targets:main
to build an executable namedmain
.clean
which will get rid of.o
files.- If you are using
doctest.h
you should have atests
target but if you do not, you don’t need this target.
- You must include at least one poorly formatted C++ file to test your program on in the repository.
- Do not add/commit/push the “fixed” file that your program produces.
- If I need to know anything, please write it in the Notes: section above.