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
@mthom ,this seems to be closable. I like the more restricted form as it is now:
?- X = "foo¦bar".
X = "foo¦bar".
?- op(1100,xfy,¦).
error(syntax_error(unexpected_char),read_term/3:0) % nice
| syntax_error(_). % any syntax error will do
?- op(1100,xfy,'¦').
true.
?- X=1¦2.
error(syntax_error(unexpected_char),read_term/3:0) % nice
| syntax_error(_). % any syntax error will do
?- X=(1'¦'2).
X = (1'¦'2).
I get this in Scryer Prolog:
Whereas in SWI-Prolog I can easily do:
The text was updated successfully, but these errors were encountered: