, = , . = , : includes:, <=, >=, remove:, keyAtValue:, indexOf:, upTo:, peekFor:, occurrencesOf:, add: ( Set), at: ( at:ifAbsent:, at:ifAbsentPut: ..) .
, = , ,
= (, banana = car )- ,
=, hash.
, =.
, (Set, Dictionary, Bag ..), ,
IF a = b THEN a hash = b hash
, , hash SmallIntegers, ,
IF a = b THEN a hash == b hash
, , , hash .
=, a = b, , a b a b.
a == b Smalltalkers , a b - , a b a a a - b.
= , , , Smalltalk .
== , , (VM), , . , a b , .
< >
a := 'This String'.
b := 'This' , ' ', 'String'.
a == b "false".
a = b "true"
f := 2 / 3.
g := 2 / 3.
f = g "true".
f == g "false"
SmallInteger, =, ==, .
n := 3 + 4.
m := 2 + 5.
n = m "true".
n == m "true".
Symbol
s :=
t := 'symbol' asSymbol.
s = t "true".
s == t "true!"
, Symbol , .