|
1 | 1 | ---
|
2 |
| -layout: basic |
3 |
| -title: The Rust Programming Language |
| 2 | +layout: fr-FR/basic |
| 3 | +title: Langage de programmation 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> est un langage de programmation système ultra-rapide, |
| 10 | + qui prévient les erreurs de segmentations |
| 11 | + et garantie la sureté entre threads. |
13 | 12 | <br/>
|
14 |
| - <a href="https://doc.rust-lang.org/book/README.html">Show me!</a> |
| 13 | + <a href="https://doc.rust-lang.org/book/README.html">Montre-moi!</a> |
15 | 14 | </p>
|
16 | 15 | </div>
|
17 | 16 | <div class="col-md-4 install-box">
|
18 | 17 | <span class="version-rec-box-inner">
|
19 |
| - Recommended Version:<br> |
| 18 | + Version recommandée:<br> |
20 | 19 | <span id="install-version">
|
21 | 20 | {{ site.stable }}
|
22 | 21 | (<span>source</span>)
|
23 | 22 | </span>
|
24 | 23 | </span>
|
25 | 24 | <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> |
| 25 | + href="https://static.rust-lang.org/dist/rustc-{{ site.stable }}-src.tar.gz">Installer</a> |
| 26 | + <a class="btn btn-default" href="install.html" role="button">Autres téléchargements</a> |
28 | 27 | </div>
|
29 | 28 | </div>
|
30 | 29 |
|
31 | 30 | <div class="row code-row">
|
32 | 31 | <div class="col-md-4">
|
33 |
| - <h2>Featuring</h2> |
| 32 | + <h2>Fonctionnalités</h2> |
34 | 33 | <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> |
| 34 | + <li>abstractions sans cout</li> |
| 35 | + <li>sémantique de mouvement</li> |
| 36 | + <li>garantie de sureté de la mémoire</li> |
| 37 | + <li>fils d’exécution sans accès concurrent</li> |
| 38 | + <li>généricité avec les <i>traits</i></li> |
| 39 | + <li>filtrage par motif</li> |
| 40 | + <li>inférence de type</li> |
| 41 | + <li>environnement d’exécution minimal</li> |
| 42 | + <li><i>bindings</i> C efficaces</li> |
44 | 43 | </ul>
|
45 | 44 | </div>
|
46 | 45 | <div class="col-md-8">
|
47 | 46 | <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> |
| 47 | + <button type="button" class="btn btn-primary btn-sm" id="run-code">Exécuter</button> |
| 48 | + <div id="editor">{% include fr-FR/example.rs %}</div> |
50 | 49 | <div id="result">
|
51 | 50 | <a id="playlink"><i class="icon-link-ext"></i></a>
|
52 | 51 | </div>
|
53 | 52 | </div>
|
54 |
| - <div id="static-code">{% include example.rs.html %}</div> |
| 53 | + <div id="static-code">{% include fr-FR/example.rs.html %}</div> |
55 | 54 | <div class="more-examples">
|
56 |
| - <a href="http://rustbyexample.com/">More examples</a> |
| 55 | + <a href="http://rustbyexample.com/">Plus d’exemples</a> |
57 | 56 | </div>
|
58 | 57 | </div>
|
59 | 58 | </div>
|
|
0 commit comments