All Projects → Jimskapt → rust-book-fr

Jimskapt / rust-book-fr

Licence: other
🇫🇷 French translation of the book "The Rust Programming Language"

Programming Languages

rust
11053 projects
HTML
75241 projects
shell
77523 projects
XSLT
1337 projects
Handlebars
879 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to rust-book-fr

Gobyexample
🎁 Go By Example 한국어 버전
Stars: ✭ 50 (-43.82%)
Mutual labels:  learning, translation
Ziglearn
Repo for https://ziglearn.org content. Get up to speed with Zig quickly.
Stars: ✭ 135 (+51.69%)
Mutual labels:  learning, learn-to-code
Community Search
A community-curated repository of 🔥 learning resources
Stars: ✭ 72 (-19.1%)
Mutual labels:  learning, learn-to-code
Learnyoubash
Learn you how to write your first bash script
Stars: ✭ 589 (+561.8%)
Mutual labels:  learning, learn-to-code
Creative Scala
Quick, graphical, fun introduction to programming in Scala.
Stars: ✭ 171 (+92.13%)
Mutual labels:  learning, learn-to-code
Notebooks
Learn Python for free using open-source notebooks in Hebrew.
Stars: ✭ 877 (+885.39%)
Mutual labels:  learning, learn-to-code
Learn Tech
Duolingo of Technology
Stars: ✭ 90 (+1.12%)
Mutual labels:  learning, learn-to-code
Javascript Exercises
📚 Collection of JavaScript exercises and coding challenges.
Stars: ✭ 385 (+332.58%)
Mutual labels:  learning, learn-to-code
js-training
JS Training Course
Stars: ✭ 39 (-56.18%)
Mutual labels:  learning, learn-to-code
Inginious
INGInious is a secure and automated exercises assessment platform using your own tests, also providing a pluggable interface with your existing LMS.
Stars: ✭ 138 (+55.06%)
Mutual labels:  learning, learn-to-code
Most Frequent Technology English Words
程序员工作中常见的英语词汇
Stars: ✭ 4,711 (+5193.26%)
Mutual labels:  learning, translation
Javascript
GitBook teaching programming basics with Javascript
Stars: ✭ 2,525 (+2737.08%)
Mutual labels:  learning, learn-to-code
Learn Php
🐘 Learn modern PHP
Stars: ✭ 455 (+411.24%)
Mutual labels:  learning, learn-to-code
Tic Tac Vue
A simple Tic-Tac-Toe game written in Vue.
Stars: ✭ 29 (-67.42%)
Mutual labels:  learning, learn-to-code
Awesome Cn
超赞列表合集
Stars: ✭ 449 (+404.49%)
Mutual labels:  learning, learn-to-code
Dayasadev
📗 A course to teach non-technical team members what developers do 📗
Stars: ✭ 73 (-17.98%)
Mutual labels:  learning, learn-to-code
Blog
刘博文(Berwin),花名“玖五”,畅销书《深入浅出Vue.js》作者、Speaker、阿里巴巴集团前端技术专家,天猫双11大促会场消防员、现负责包含天猫双11在内的超大型营销活动的终端渲染架构与专项PM。
Stars: ✭ 3,773 (+4139.33%)
Mutual labels:  learning, learn-to-code
Start Machine Learning In 2020
A complete guide to start and improve in machine learning (ML), artificial intelligence (AI) in 2021 without ANY background in the field and stay up-to-date with the latest news and state-of-the-art techniques!
Stars: ✭ 357 (+301.12%)
Mutual labels:  learning, learn-to-code
Carmel
The Open Digital Innovation Marketplace
Stars: ✭ 136 (+52.81%)
Mutual labels:  learning, learn-to-code
How To Markdown
Learn how to start using Markdown
Stars: ✭ 173 (+94.38%)
Mutual labels:  learning, learn-to-code

📖 Le langage de programmation Rust

🌐 This is the french translation of the book "The Rust Programming Language"

👓 Click here to read this translated book online

🔗 Click here to go to the English Book repository

Translations are inside /FRENCH/ folder. Everything else should be remaining as the English Book (except some necessary files, like this README.md).

Want to help to translate ? Please read the file /FRENCH/CONTRIBUTING.md !

The Rust Programming Language

Build Status

This repository contains the source of "The Rust Programming Language" book.

The book is available in dead-tree form from No Starch Press.

You can also read the book for free online. Please see the book as shipped with the latest stable, beta, or nightly Rust releases. Be aware that issues in those versions may have been fixed in this repository already, as those releases are updated less frequently.

See the releases to download just the code of all the code listings that appear in the book.

Requirements

Building the book requires mdBook, ideally the same version that rust-lang/rust uses in this file. To get it:

$ cargo install mdbook --vers [version-num]

Building

To build the book, type:

$ mdbook build

The output will be in the book subdirectory. To check it out, open it in your web browser.

Firefox:

$ firefox book/index.html                       # Linux
$ open -a "Firefox" book/index.html             # OS X
$ Start-Process "firefox.exe" .\book\index.html # Windows (PowerShell)
$ start firefox.exe .\book\index.html           # Windows (Cmd)

Chrome:

$ google-chrome book/index.html                 # Linux
$ open -a "Google Chrome" book/index.html       # OS X
$ Start-Process "chrome.exe" .\book\index.html  # Windows (PowerShell)
$ start chrome.exe .\book\index.html            # Windows (Cmd)

To run the tests:

$ mdbook test

Contributing

We'd love your help! Please see CONTRIBUTING.md to learn about the kinds of contributions we're looking for.

Because the book is printed, and because we want to keep the online version of the book close to the print version when possible, it may take longer than you're used to for us to address your issue or pull request.

So far, we've been doing a larger revision to coincide with Rust Editions. Between those larger revisions, we will only be correcting errors. If your issue or pull request isn't strictly fixing an error, it might sit until the next time that we're working on a large revision: expect on the order of months or years. Thank you for your patience!

Translations

We'd love help translating the book! See the Translations label to join in efforts that are currently in progress. Open a new issue to start working on a new language! We're waiting on mdbook support for multiple languages before we merge any in, but feel free to start!

Spellchecking

To scan source files for spelling errors, you can use the spellcheck.sh script available in the ci directory. It needs a dictionary of valid words, which is provided in ci/dictionary.txt. If the script produces a false positive (say, you used word BTreeMap which the script considers invalid), you need to add this word to ci/dictionary.txt (keep the sorted order for consistency).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].