In OCaml, we have two kinds of equity comparisons:
OCaml
equity comparisons
x = y and x == y,
x = y
x == y
So what\'s exact the difference betw
according to http://rigaux.org/language-study/syntax-across-languages-per-language/OCaml.html, == checks for shallow equality, and = checks for deep equality
==
=