diff --git a/exercises/02-Hello-World/README.es.md b/exercises/02-Hello-World/README.es.md index affca06..da0a93d 100644 --- a/exercises/02-Hello-World/README.es.md +++ b/exercises/02-Hello-World/README.es.md @@ -2,14 +2,14 @@ En Python, usamos `print` para hacer que el computador escriba cualquier cosa que queramos (el contenido de una variable, un texto dado, etc.) in algo llamado `la consola`. -Every language has functions to integrate with the console, as it was the only way to interact with the users at the beginning (before the Windows or MacOS arrived). Today, printing in the console is used mostly as a monitoring tool, ideal to leave a trace of the content of variables during the program execution. +Cada idioma tiene funciones para integrarse con la consola, ya que al principio era la única forma de interactuar con los usuarios (antes de que llegara Windows o MacOS o Linux). Hoy en día, la impresión en la consola se utiliza sobre todo como herramienta de monitorización, ideal para dejar un rastro del contenido de las variables durante la ejecución del programa. -This is an example of how to use it: +Este es un ejemplo de cómo usarlo: ```js print("How are you?") ``` -## 📝 Instructions: +## 📝 Instrucciones: Usa la función `print()` para escribir "Hello World!" en la consola. Siéntete libre de intentar otras cosas también. diff --git a/exercises/02-Hello-World/README.md b/exercises/02-Hello-World/README.md index 1ed2958..11ac71d 100644 --- a/exercises/02-Hello-World/README.md +++ b/exercises/02-Hello-World/README.md @@ -2,7 +2,7 @@ In Python, we use `print` to make the computer write anything we want (the content of a variable, a given string, etc.) in something called `the console`. -Every language has functions to integrate with the console, as it was the only way to interact with the users at the beginning (before the Windows or MacOS arrived). Today, printing in the console is used mostly as a monitoring tool, ideal to leave a trace of the content of variables during the program execution. +Every language has functions to integrate with the console, as it was the only way to interact with the users at the beginning (before the Windows or Linux or MacOS arrived). Today, printing in the console is used mostly as a monitoring tool, ideal to leave a trace of the content of variables during the program execution. This is an example of how to use it: ```js