Spracherkennung für: .out vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
gap> #
gap> # Verify that a CRLF after a line continuation increments the current line
gap> # counter only once, so that both examples below report the error in line 2.
gap> #
gap> EvalString("123\\\n45x;");
Error, Variable: '12345x' must have a value
not in any function at stream:2
Error, Could not evaluate string.
at GAPROOT/lib/string.gi:LINE called from
<function "EvalString">( <arguments> )
called from read-eval loop at *stdin*:6
you can 'quit;' to quit to outer loop, or
you can 'return;' to continue
brk> quit;
gap> EvalString("123\\\r\n45x;");
Error, Variable: '12345x' must have a value
not in any function at stream:2
Error, Could not evaluate string.
at GAPROOT/lib/string.gi:LINE called from
<function "EvalString">( <arguments> )
called from read-eval loop at *stdin*:6
you can 'quit;' to quit to outer loop, or
you can 'return;' to continue
brk> quit;
gap> QUIT;
[ Dauer der Verarbeitung: 0.31 Sekunden
]