add linebreaks

This commit is contained in:
Mark Thom
2016-10-28 19:56:30 -06:00
parent 78f00ee562
commit 01dcca1b4d

View File

@@ -14,30 +14,30 @@ atoms are currently supported.
An example of the level of interaction currently supported is: An example of the level of interaction currently supported is:
`l0> p(Z, Z). `l0> p(Z, Z).`
Program stored. `Program stored.`
l0> ?- p(Z, Z). `l0> ?- p(Z, Z).`
yes `yes`
l0> ?- p(Z, z). `l0> ?- p(Z, z).`
yes `yes`
l0> ?- p(Z, w). `l0> ?- p(Z, w).`
yes `yes`
l0> ?- p(z, w). `l0> ?- p(z, w).`
no no
l0> ?- p(w, w). `l0> ?- p(w, w).`
yes `yes`
l0> ?- p(Z, w). `l0> ?- p(Z, w).`
yes `yes`
l0> ?- p(Z, h(Z, W), f(W)). `l0> ?- p(Z, h(Z, W), f(W)).`
no `no`
l0> p(Z, h(Z, W), f(W)). `l0> p(Z, h(Z, W), f(W)).`
Program stored. `Program stored.`
l0> ?- p(z, h(z, z), f(w)). `l0> ?- p(z, h(z, z), f(w)).`
no `no`
l0> ?- p(z, h(z, w), f(w)). `l0> ?- p(z, h(z, w), f(w)).`
yes `yes`
l0> ?- p(Z, h(z, W), f(w)). `l0> ?- p(Z, h(z, W), f(w)).`
yes `yes`
l0> ?- p(z, h(Z, w), f(w)). `l0> ?- p(z, h(Z, w), f(w)).`
yes `yes`
l0> quit` `l0> quit`