writes a character given by its ASCII value to the current output
put(65)
put(Int) (i)
integer(Int) (i) ASCII value of character to be written.
This is a standard prolog built-in. Put() writes the character with the ASCII value Int to the current output stream.
read(X), ( char(X), write("Character "), write(X), nl ; integer(X), write("Integer "),put(X), nl ).
No runtime errors.
prolog-process, client-server, object