1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-14 02:34:17 +02:00

Merge pull request #3550 from esthor/patch-1

[prolog] - typo fix in prolog.html.markdown
This commit is contained in:
Divay Prakash
2019-06-29 09:41:33 +05:30
committed by GitHub

View File

@@ -75,7 +75,7 @@ magicNumber(42).
?- 2 = 3. % False - equality test
?- X = 3. % X = 3 - assignment
?- X = 2, X = Y. % X = Y = 2 - two assignments
% Note Y is assigned to, even though it is
% Note Y is assigned too, even though it is
% on the right hand side, because it is free
?- X = 3, X = 2. % False
% First acts as assignment and binds X=3