a gleam implementation of a CS assignment originally written in cpp

bug: append to file not overwrite

Changed files
+1 -1
src
+1 -1
src/lab66.cpp
···
if (foundVerse) {
cout << verse << " " << verseString << endl;
-
OF.open(outputFilename);
+
OF.open(outputFilename, ios_base::app);
if (!OF.is_open()) {
cout << outputFilename << ": error saving file" << endl;