scriptName MyScript
{This is the text that we are looking for, right here.
Oh, and it can have newlines.}
#include <Pex/FileReader.hpp>
#include <filesystem>
#include <format>
#include <iostream>
int main() {
auto path = std::filesystem::current_path() / "../../MyScript.pex";
auto pex = Pex::Binary();
auto reader = Pex::FileReader(path.string());
reader.read(pex);
std::cout << pex.getObjects().front().getDocString().asString();
// Prints out "This is the text that we are looking for, right here.\n\nOh..."
}