1 Matching Annotations
- Mar 2023
-
chiselapp.com chiselapp.com
-
'smalltalk' = ('small' , 'talk') "we have the same value" ('smalltalk' == ('small' , 'talk')) not "but different identity"
Existen tres operadores similares pero distintos:
- Asignación:
x := 2
: A la variablex
le voy a asignar el valor 2. - Igualadad:
'smalltalk' = ('small' , 'talk')
- Identidad:
"smalltal' == ('small' , 'talk')
.
- Asignación:
-