-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
String parsing incorrect #1969
Comments
Also: ?- "\x0\\x0\" = [_,_]. false, unexpected. true. % expected |
|
This issue may be confined to parsing strings, at least the following works exactly as expected: ?- A = '\x0\\x0\', atom_chars(A, Cs), Cs = [_,_]. A = '\x0\\x0\', Cs = "\x0\\x0\". So, |
So in a (single)
|
Currently, I get:
The text was updated successfully, but these errors were encountered: