Warning: session_start(): open(/var/lib/php/sessions/sess_4mivd60k0t1l8cp4lhtefat2vr, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static ReadingComprehensionTest ai_parseReadingComprehensionTest1(S text) { new ReadingComprehensionTest test; L isQ = print(map(rcurry_swic("Question"), paragraphs)); int idx = print(falsesFollowedByTrues_changeIndex_assertNotNull(isQ)); LS textPart = takeFirst(paragraphs, idx); LS questionsPart = sublist(paragraphs, idx); assertTrue(isPreciseMultiDashesHeading(first(textPart))); test.text = joinWithEmptyLines(dropFirst(textPart)); test.textSentences = pnl(sentences(text)); for (S s : questionsPart) { LS lines = tlft(s); assertEquals(4, l(lines)); assertStartsWith(first(lines), "Question "); S q = second(lines); LS answersOnLine = regexpGroups("^1(.+)2(.+)$", third(lines)); assertNempty(answersOnLine); LS answersOnLine2 = regexpGroups("^3(.+)4(.+)$", last(lines)); assertNempty(answersOnLine2); LS answers = trimAll(concatLists(answersOnLine, answersOnLine2)); add(test.questions, nu Question(question := q, +answers)); print(q); printStruct(answers); } ret test; }