scryer-prolog icon indicating copy to clipboard operation
scryer-prolog copied to clipboard

[user]. Syntax error not reported

Open flexoron opened this issue 8 months ago • 4 comments

?- [user].
{x|y|z}.
?- X =.. [{},(A|B|C)], call(X).
   error(syntax_error(incomplete_reduction),read_term/3:1). % unexpected
   X = {x|y|z}, A = x, B = y, C = z. % expected but not found.
?- 

flexoron avatar Jun 08 '24 01:06 flexoron