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
?- asserta(a(1,2)).
true.
?- clause(a(X,Y),B).
2024/01/05 21:20:04 error(permission_error(access,private_procedure,a/2),clause/2), unexpected.
X=1,Y=2,B=true. % expected, but not found
The text was updated successfully, but these errors were encountered:
$ go install github.com/ichiban/prolog/cmd/1pl@latestgo: downloading github.com/ichiban/prolog v1.2.0
$ $(go env GOPATH)/bin/1plTop level for ichiban/prolog v1.2.0This is for testing purposes only!See https://github.com/ichiban/prolog for more details.Type Ctrl-C or 'halt.' to exit.?- asserta(a(1,2)).true.?- clause(a(X,Y),B).B = true,X = 1,Y = 2.?-
The text was updated successfully, but these errors were encountered: