Skip to content

Commit cec565d

Browse files
committed
fix output examples
1 parent 479e8d3 commit cec565d

File tree

85 files changed

+244
-217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+244
-217
lines changed

modules/10-basics/10-hello-world/description.es.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ theory: |
66
77
Este programa mostrará el siguiente texto en la pantalla:
88
9-
<pre class='hexlet-basics-output'>
9+
```text
1010
Hello, World!
11-
</pre>
11+
```
1212
1313
Para mostrar algo en la pantalla, es necesario darle al ordenador un comando especial. En el lenguaje JavaScript, ese comando es `console.log()`.
1414
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
As is tradition, we'll start by writing a 'Hello, World!' program. The program will print the following text:
22

3-
<pre class='hexlet-basics-output'>
3+
```text
44
Hello, World!
5-
</pre>
5+
```
66

77
To print something, you need to give computer a special command. In JavaScript, we use `console.log()`.

modules/10-basics/10-hello-world/es/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Por lo general, el aprendizaje de un nuevo lenguaje de programación comienza co
22

33
Este programa mostrará el siguiente texto en la pantalla:
44

5-
<pre class='hexlet-basics-output'>
5+
```text
66
Hello, World!
7-
</pre>
7+
```
88

99
Para mostrar algo en la pantalla, es necesario darle al ordenador un comando especial. En el lenguaje JavaScript, ese comando es `console.log()`.

modules/10-basics/10-hello-world/ru/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
Эта программа будет выводить на экран текст:
44

5-
<pre class='hexlet-basics-output'>
5+
```text
66
Hello, World!
7-
</pre>
7+
```
88

99
Чтобы вывести что-то на экран, нужно дать компьютеру специальную команду. В языке JavaScript такая команда — `console.log()`.

modules/10-basics/40-instructions/description.es.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ theory: |
1414
1515
Al ejecutar este código, se mostrarán en pantalla las dos frases de forma secuencial:
1616
17-
<pre class='hexlet-basics-output'>
17+
```text
1818
Mother of Dragons.
1919
Dracarys!
20-
</pre>
20+
```
2121
2222
Teóricamente, las instrucciones se pueden escribir una tras otra sin saltar de línea:
2323
@@ -32,11 +32,11 @@ theory: |
3232
instructions: |
3333
Muestra en pantalla, uno tras otro, estos tres nombres: *Robert*, *Stannis*, *Renly*. El resultado en pantalla debe ser:
3434
35-
<pre class='hexlet-basics-output'>
35+
```text
3636
Robert
3737
Stannis
3838
Renly
39-
</pre>
39+
```
4040
4141
Utiliza una llamada `console.log()` para cada nombre.
4242
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Print these three names, one after the other: "Robert", "Stannis", "Renly". As a result, the editor should print:
22

3-
<pre class='hexlet-basics-output'>
3+
```text
44
Robert
55
Stannis
66
Renly
7-
</pre>
7+
```
88

99
Call `console.log()` for each name.

modules/10-basics/40-instructions/en/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ console.log('Dracarys!');
99

1010
When you run this code you will see two sentences on the screen, one after the other.
1111

12-
<pre class='hexlet-basics-output'>
12+
```text
1313
Mother of Dragons.
1414
Dracarys!
15-
</pre>
15+
```
1616

1717
Theoretically, it's possible to put multiple statements on the same string:
1818

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Muestra en pantalla, uno tras otro, estos tres nombres: *Robert*, *Stannis*, *Renly*. El resultado en pantalla debe ser:
22

3-
<pre class='hexlet-basics-output'>
3+
```text
44
Robert
55
Stannis
66
Renly
7-
</pre>
7+
```
88

99
Utiliza una llamada `console.log()` para cada nombre.

modules/10-basics/40-instructions/es/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ console.log('Dracarys!');
99

1010
Al ejecutar este código, se mostrarán en pantalla las dos frases de forma secuencial:
1111

12-
<pre class='hexlet-basics-output'>
12+
```text
1313
Mother of Dragons.
1414
Dracarys!
15-
</pre>
15+
```
1616

1717
Teóricamente, las instrucciones se pueden escribir una tras otra sin saltar de línea:
1818

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Выведите на экран друг за другом три имени: *Robert*, *Stannis*, *Renly*. В результате на экране должно отобразиться:
22

3-
<pre class='hexlet-basics-output'>
3+
```text
44
Robert
55
Stannis
66
Renly
7-
</pre>
7+
```
88

99
Для каждого имени используйте свой собственный вызов `console.log()`.

0 commit comments

Comments
 (0)