|
1 | 1 | ---
|
2 | 2 | layout: ru-RU/basic
|
3 |
| -title: The Rust Programming Language |
| 3 | +title: Язык программирования Rust |
4 | 4 | ---
|
5 | 5 |
|
6 | 6 | <div class="row install-row">
|
7 | 7 | <div class="col-md-8">
|
8 | 8 | <p class="pitch">
|
9 |
| - <b>Rust</b> is a systems programming language |
10 |
| - that runs blazingly fast, |
11 |
| - prevents segfaults, |
12 |
| - and guarantees thread safety. |
| 9 | + <b>Rust</b> — безумно быстрый системный язык программирования без segfault'ов и с гарантиями потокобезопасности. |
13 | 10 | <br/>
|
14 |
| - <a href="https://doc.rust-lang.org/book/README.html">Show me!</a> |
| 11 | + <a href="https://doc.rust-lang.org/book/README.html">Покажите!</a> |
15 | 12 | </p>
|
16 | 13 | </div>
|
17 | 14 | <div class="col-md-4 install-box">
|
18 | 15 | <span class="version-rec-box-inner">
|
19 |
| - Recommended Version:<br> |
| 16 | + Рекомендуемая версия:<br> |
20 | 17 | <span id="install-version">
|
21 | 18 | {{ site.stable }}
|
22 | 19 | (<span>source</span>)
|
23 | 20 | </span>
|
24 | 21 | </span>
|
25 | 22 | <a class="btn btn-primary" id="inst-link"
|
26 |
| - href="https://static.rust-lang.org/dist/rustc-{{ site.stable }}-src.tar.gz">Install</a> |
27 |
| - <a class="btn btn-default" href="install.html" role="button">Other Downloads</a> |
| 23 | + href="https://static.rust-lang.org/dist/rustc-{{ site.stable }}-src.tar.gz">Установить</a> |
| 24 | + <a class="btn btn-default" href="install.html" role="button">Другие загрузки</a> |
28 | 25 | </div>
|
29 | 26 | </div>
|
30 | 27 |
|
31 | 28 | <div class="row code-row">
|
32 | 29 | <div class="col-md-4">
|
33 |
| - <h2>Featuring</h2> |
| 30 | + <h2>Возможности</h2> |
34 | 31 | <ul class="laundry-list">
|
35 |
| - <li>zero-cost abstractions</li> |
36 |
| - <li>move semantics</li> |
37 |
| - <li>guaranteed memory safety</li> |
38 |
| - <li>threads without data races</li> |
39 |
| - <li>trait-based generics</li> |
40 |
| - <li>pattern matching</li> |
41 |
| - <li>type inference</li> |
42 |
| - <li>minimal runtime</li> |
43 |
| - <li>efficient C bindings</li> |
| 32 | + <li>абстракции с нулевой стоимостью</li> |
| 33 | + <li>семантика перемещения</li> |
| 34 | + <li>гарантированная безопасность памяти</li> |
| 35 | + <li>потоки без гонок данных</li> |
| 36 | + <li>обобщение через типажи</li> |
| 37 | + <li>сопоставление с образцом</li> |
| 38 | + <li>вывод типов</li> |
| 39 | + <li>маленькая среда исполнения</li> |
| 40 | + <li>эффективный FFI</li> |
44 | 41 | </ul>
|
45 | 42 | </div>
|
46 | 43 | <div class="col-md-8">
|
47 | 44 | <div id="active-code">
|
48 |
| - <button type="button" class="btn btn-primary btn-sm" id="run-code">Run</button> |
49 |
| - <div id="editor">{% include example.rs %}</div> |
| 45 | + <button type="button" class="btn btn-primary btn-sm" id="run-code">Запустить</button> |
| 46 | + <div id="editor">{% include ru-RU/example.rs %}</div> |
50 | 47 | <div id="result">
|
51 | 48 | <a id="playlink"><i class="icon-link-ext"></i></a>
|
52 | 49 | </div>
|
53 | 50 | </div>
|
54 |
| - <div id="static-code">{% include example.rs.html %}</div> |
| 51 | + <div id="static-code">{% include ru-RU/example.rs.html %}</div> |
55 | 52 | <div class="more-examples">
|
56 |
| - <a href="http://rustbyexample.com/">More examples</a> |
| 53 | + <a href="http://rustbyexample.com/">Больше примеров</a> |
57 | 54 | </div>
|
58 | 55 | </div>
|
59 | 56 | </div>
|
|
0 commit comments