Russell’s Antinomy
Thursday, July 14th, 2005From the VisualWorks Non-Commercial List
Given the following code:
set1 := Set with: 2 with: 3 with: 4.
set2 := Set with: 4 with: 3 with: 2.
Should:
set1 = set2 ?
BTW, the above in Smalltalk reads set1 is equal to set2.
The answer is that in VisualWorks it does not but in Squeak it does. I favor the Squeak [...]