Skip to content
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

Translate ch01-01 in french. #1

Open
wants to merge 3 commits into
base: french-release
Choose a base branch
from
Open
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
65 changes: 65 additions & 0 deletions FRENCH/src/01_getting_started/01_chapter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!--
# Getting Started
-->

# Pour démarrer

<!--
Welcome to Asynchronous Programming in Rust! If you're looking to start writing
asynchronous Rust code, you've come to the right place. Whether you're building
a web server, a database, or an operating system, this book will show you
how to use Rust's asynchronous programming tools to get the most out of your
hardware.
-->

Bienvenue dans la programmation asynchrone avec Rust ! Si vous voulez
commencer à écrire du code asynchrone avec Rust, vous êtes au bon endroit. Que
vous soyez en train de construire un serveur web, une base de données, ou un
système d'exploitation, ce livre va vous montrer comment utiliser les outils
de programmation asynchrone de Rust pour exploiter au mieux votre matériel.

<!--
## What This Book Covers
-->

## Ce que ce livre va traiter

<!--
This book aims to be a comprehensive, up-to-date guide to using Rust's async
language features and libraries, appropriate for beginners and old hands alike.
-->

Ce livre vise à être un guide étendu et à jour sur l'utilisation des
bibliothèques et fonctionnalités asynchrones du langage Rust, aussi bien pour
les débutants que pour les habitués.

<!--
- The early chapters provide an introduction to async programming in general,
and to Rust's particular take on it.

- The middle chapters discuss key utilities and control-flow tools you can use
when writing async code, and describe best-practices for structuring libraries
and applications to maximize performance and reusability.

- The last section of the book covers the broader async ecosystem, and provides
a number of examples of how to accomplish common tasks.
-->

- Les chapitres du début initient à la programmation asynchrone en général, et
comment Rust l'a interprété.

- Les chapitres intermédiaires présentent les principaux utilitaires et outils
de contrôle que vous pouvez utiliser lorsque vous écrivez du code asynchrone,
et explique les bonnes pratiques pour structurer les bibliothèques et les
applications afin d'optimiser les performances et la réutilisation.

- La dernière section du livre aborde plus largement l'écosystème asynchrone,
et propose un certain nombre d'exemples pour répondre à des besoins courants.

<!--
With that out of the way, let's explore the exciting world of Asynchronous
Programming in Rust!
-->

Maintenant que vous savez cela, commençons à explorer le monde excitant de la
programmation asynchrone avec Rust !
2 changes: 2 additions & 0 deletions FRENCH/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Table des matières

- [Pour démarrer](01_getting_started/01_chapter.md)

[Traduction des termes](translation-terms.md)