struct Rec
{
string[] fileLines;
}
Rec someRecords;
string someText;
to append a new record I'm doing this:
someRecords ~= Rec();
someRecords.fileLines ~= someText;
but feel there might be a way to condense this to a single
statement.. but how?
Sorry about cat-on-keyboard posting-error (again!).
