aarroyoc/scryer-playground

?- char_code(C, 0). does not work as expected

Closed this issue · 3 comments

Currently, I get:

?- char_code(C, 0).

[C=�]

Whereas on the Scryer toplevel, I get, as expected:

?- char_code(C, 0).
   C = '\x0\'.

#14 solves this.

A version with the new toplevel has been deployed

Perfect, thank you a lot!