-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from hexlet-basics/new-structure
switch to new structure
- Loading branch information
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Наберите в редакторе код из задания символ в символ и нажмите «Проверить». | ||
|
||
```perl | ||
print "Hello, World!"; | ||
``` | ||
|
||
> Внимание: если вы напишете `heLLo, woRld!` вместо `Hello, World!`, то это будет считаться другим текстом, потому что заглавные и строчные буквы — это разные символы. Размер буквы называют *регистром*, и говорят: **регистр — важен!** Это касается почти всего в коде, поэтому привыкайте всегда обращать внимание на регистр. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Изучать язык программирования, по традиции, начинают с программы 'Hello, World!'. | ||
|
||
<pre class='hexlet-basics-output'> | ||
Hello, World! | ||
</pre> | ||
|
||
В языке Perl эта программа будет выглядеть так: | ||
|
||
```perl | ||
print "Hello, World!"; | ||
``` | ||
|
||
Текст `Hello, World!` появится на экране благодаря команде `print`. | ||
|
||
Такая команда выводит на экран информацию, которая указана после директивы `print`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
name: Первая программа на Perl | ||
tips: | ||
- >- | ||
Если в редакторе есть запись `# BEGIN` и `#END`, то код нужно писать между | ||
этими строчками. |