notoria
notoria
With this [program](https://pastebin.com/FrRUahFE), a prolog code is generated with 32665 predicates but the conjunction fails, the definition of `a` and pasting the body of `a` in toplevel fails. There error...
The following happens: ``` ?- current_op(A, B, C). A = 400, B = yfx, C = (*) ; A = 200, B = xfy, C = ** ; A =...
The following happens: ``` ?- write(begin), read(G), write(end). begin true. write(something). end G = true. something true. ?- ```
The following happens: ``` ?- !. caught: error(existence_error(procedure,!/0),!/0) ?- ``` While: ``` ?- true, !. true. ?- !, true. true. ?- ```