Sin asunto


Mar Jul 21 06:26:36 EDT 2009


point-of-view, she has moved 50 pixels.



* El uso de Y y O es más natural que en Logo:

if age == 10 or age == 11 or age == 12 or age == 13:

versus en Logo:

si (o :age = 10 :age = 11 :age = 12 :age = 13) [ ... ]


* Capítulo 4.5. Llegamos al problema de la conversión de tipos:

What’s the difference between 10 and ’10’?

>>> age = ’10’
>>> if age == 10:
... print(’you are 10’)
...
Why is the code in the block not run?


En Logo no hay este problema particular (aunque hay otro diferente :)

haz "edad "10
si :edad = 10 [escribe [tienes 10 años]]

tienes 10 años

escribe 10 = "10
cierto


* Interesante analogía entre reciclar y crear funciones. Capítulo 6.


Me cansé :)
Daniel



More information about the olpc-Sur mailing list