Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

fix #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions exercises/02-Hello-World/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion exercises/02-Hello-World/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down