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
?- A = "hello \x00\world".
A = "hello world".% expected: A = "hello \x0\world".
?- A = [h, e, l, l, o, ' ', '\x00\', w, o, r, l, d].
A = "hello world".% expected: A = "hello \x0\world".
?- NULL = '\x00\', A = [h, e, l, l, o, ' ', NULL, w, o, r, l, d].
NULL = '\x0\', A = "hello \x0\world".% expected
I guess it is a bug on the compact string representation.
The text was updated successfully, but these errors were encountered:
In case of doubt, please leave it open: Even though it seems very similar and closely related, we do not know that this is due to the same reason. When it is fixed, we can easily find and close all related issues because they are linked in this way.
I guess it is a bug on the compact string representation.
The text was updated successfully, but these errors were encountered: