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
Our Write params in predicate.go aren't good enough. We need to pass at LEAST the comma operator to engine.Write to avoid sending invalid code like , (foo, bar) which SWI doesn't like. Either fix it to be ','(foo, bar) or (foo, bar).
The text was updated successfully, but these errors were encountered:
Atom quoting
SWI doesn't quote non-ASCII by default, but ichiban/prolog requires it. So Japanese, for example
'漢字'
will break it.There's a workaround:
Operator quoting
Our Write params in
predicate.go
aren't good enough. We need to pass at LEAST the comma operator toengine.Write
to avoid sending invalid code like, (foo, bar)
which SWI doesn't like. Either fix it to be','(foo, bar)
or(foo, bar)
.The text was updated successfully, but these errors were encountered: