If you query e.g.
?- X = 10, Y = 10, Z = 10.
The output is
X = Y, Y = Z, Z = 10.
But my X is totally different from Y, they just happen to accidentally both be 10, so it doesn't seem clear/logical to display it that way. Can i make it look like this instead?:
X = 10, Y = 10, Z = 10.