You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Evaluating an expression with an "unkown escape sequence" can cause the interpreter to enter a broken state where subsequently entered expressions are evaluated wrong,
arc> (pr "\^foo")
UNKNOWN::4: read: unknown escape sequence \^ in string
context...:
/home/pelle/anarki/ac.scm:1276:4
arc> _foo: undefined;
cannot reference an identifier before its definition
in module: "/home/pelle/anarki/ac.scm"
context...:
/home/pelle/anarki/ac.scm:1276:4
arc> (pr "bar")
")\n(pr "
arc> _bar: undefined;
cannot reference an identifier before its definition
in module: "/home/pelle/anarki/ac.scm"
context...:
/home/pelle/anarki/ac.scm:1276:4
The text was updated successfully, but these errors were encountered:
Evaluating an expression with an "unkown escape sequence" can cause the interpreter to enter a broken state where subsequently entered expressions are evaluated wrong,
The text was updated successfully, but these errors were encountered: