a gleam implementation of a CS assignment originally written in cpp

bug: use paths right next to the file for zybooks

Changed files
+3 -3
src
+1 -1
makefile
···
cd test && ./test.sh
exec:
-
./build/lab66 test/OT.txt
+
./build/lab66 test/OT.txt build/verses.txt
run: lab66 exec
+2 -2
src/lab66.cpp
···
ifstream OT;
ofstream OF;
-
string inputFilename = "../test/OT.txt";
-
string outputFilename = "build/verses.txt";
+
string inputFilename = "OT.txt";
+
string outputFilename = "verses.txt";
string book;
string normalizedBook;