2 Matching Annotations
- May 2023
-
chiselapp.com chiselapp.com
-
hedgeDoc := HedgeDoc new url: 'https://docutopia.sustrato.red/accesibilidad:23K?both# '; retrieveContents.
Mensaje unario:
- receptor:
hegeDoc
- mensaje:
retrieveContents
Mensaje Keyword:
- receptor:
hegeDoc
- mensaje:
url:
- argumento:
https://docutopia.sustrato.red/accesibilidad:23K?both#
- receptor:
Tags
Annotators
URL
-
- 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:
-