Outils pour utilisateurs

Outils du site


issue156:c_c

Ceci est une ancienne révision du document !


https://doc.rust-lang.org/book/ Okay then, we head back to Rust development – as Daredevil14 and Ellin complained about where Lucas’ blog went. Rust seems to be getting more popular as time goes by. Truth be told, I do not like a language where a simple ‘hello world’ is 2Mb(!!), just because “space doesn’t matter”. Okay, my rant over. Regardless, we are going to look at it as the feedback suggests that this is what our readers want.

https://doc.rust-lang.org/book/

Bon ! Allez ! Revenons au développement en Rust - car DareDevil14 et Ellin se sont plaint de ce qu'est devenu le blog du Lucas. Rust semble devenir plus populaire au fil du temps.

Pour dire vrai, je déteste un langage dans lequel un simple « hello world » prend 2 Mo (!!), juste parce que « on ne se soucie pas de la taille ». Bon, assez rälé. Nous allons quand même le regarder puisque les retours laissent penser que c'est ce que souhaitent les lecteurs.

For everyone who wants to learn more, I will go through installing Rust first, so you can follow along if you like. This article explains how to install Rust in Ubuntu 18.04 (but 19.x should be the same), using the 'rustup' tool. Rustup is a terminal tool that is used to manage the installation of rust versions and optional components. Rust currently has a six-week release cycle, so ‘rustup’ is a good idea. Head on over to: https://rustup.rs/ - and run that curl command to get it installed. Choose option one (1) if prompted. Restart once done. (Easiest, as this will add what you need to your environment variables). If the download is interrupted, you can simply go back and run the command again, and you will have the option to continue with the installation.

Pour tous ceux qui veulent en apprendre plus, je vais d'abord installer Rust, et vous pouvez donc le faire en parallèle si vous le voulez. Cet article explique comment installer Rust sur Ubuntu 1804 (mais ça devrait être pareil avec 19.x ), en utilisant l'outil « rustup ». Rustup un outil de terminal qui est utilisé pour gérer l'installation des versions de rust et les composants optionnels. Rust a actuellement un cycle de publication de six semaines ; « rustup » est donc une bonne idée. Allons sur : https://rustup.rs/ - et lançons cet commande curl pour qu'il s'installe. À la demande, choisissez l'option un (1). Rédémarrez quand c'est fait. (c'est le plus facile, car ce dont vous avez besoin pour vos variables d'environnement sera ajouté).

Si le téléchargement s'interrompt, vous pouvez simplement revenir en arrière et lancer à nouveau la commande, et vous aurez la possibilité de continuer l'installation).

Once it is done, run: rustc –version ( dash dash, no spaces) cargo –version ( dash dash, no spaces) If you get a reply, all went well. At the time of writing, rust is version 1.41.0. If yours differs, that is OK. Just make sure it is a higher number, not a lower one.

Look up: “men at work - cargo” in your browser (an ancient Australian band). You will see an image of a plane and a crate. I will be using binary crates, as it is easy for n00bs like you and me. Think of cargo in this way. Delivering crates, containing what you need. Maybe even listen to “Dr Heckyll and Mr Jive”, now that you have looked it up? Une fois que c'est fait, lancez : rustc –version ( tiret tiret, sans espaces) cargo –version ( tiret tiret, sans espaces) Si vous recevez une réponse, tout va bien. Au moment où j'écris, rust est en version 1.41.0. Si vous en avez une autre, c'est bon. Assurez-vous juste que le numéro est supérieur, pas plus bas.

Cherchez : « met at work -cargo » dans votre navigateur (c'est un ancien groupe australien). Vous verrez l'image d'un avion et un caisse. J'uiliserai des caisses binaires, car c'est facile pour des « n00bs » (débutants) comme vous et moi. Pensez à cargo dans ce sens. La livraison de caisses, contenant ce que vous voulez. Vous écoutez peut-être aussi « Dr Jekill and Mr Jive », maintenant que vous l'avez cherché ?

Type: cargo new –bin rustfun (The other option I know of is: “–lib” for library files). A new binary crate named rustfun will be created (a folder and skeleton files). When you open main.rs in the src folder, you should see a simple ‘hello world’ already in there for you. Before you entered the src folder, you should have seen a cargo.toml -file. You can open this in a text editor or in Geany if you plan on using it as your IDE, or even just cat it out. We can look at all these folders and files a bit later on; for now, I just want to highlight a few things. The reason I am using Geany as my IDE is it comes with Ubuntu and we don’t need to add things to it to make it work with Rust, and it will gladly work with toml-files without complaint. It even sports its own terminal! All nicely in one place.

Saisissez :

cargo new –bin rustfun

(L'autre option que je connais est : « –lib » pour les fichiers de la bibliothèque).

Une nouvelle caisse binaire nommée rustfun sera créée (une dossier et les fichiers du squelette).

Si vous ouvrez main.rs dans le dossier src, vous devriez voir un simple « hello world » qui a été mis là pour vous. Avant que vous entriez dans le dossier src, vous devriez avoir vu un fichier cargo.toml. Vous pouvez l'ouvrir dans un éditeur de texte ou dans Geany si vous prévoyez de l'utilisez comme IDE (Interface graphique de développement) ou simplement avec la commande cat. Nous regarderons tous ces dossiers et fichiers un peu plus tard ; pour me moment, je veux juste insister sur quelques points.

La raison pour laquelle j'utilise Gany comme IDE, c'est qu'il est livré avec Ubuntu et que nous n'avons rien besoin de lui ajouter pour qu'il fonctionne avec Rust, et il il marchera merveilleusement bien avec les fichiers toml sans se plaindre. Il supporte même son nouveau terminal ! Tout bien à seul endroit.

Here is what the installation looks like on my machine: Great, now that you have it installed, let’s look at the basics and how rust treats each one. Variables Like other programming languages, a variable is just a container for a value, regardless of type. In rust, all variables have types (more later). When we program, we simply refer to the variable by name. Variable assignments in Rust are prefixed by the word “let”. For example: let my_box = 1; Also, when you assign a value to a variable (when you declare it), you cannot change its value (it is immutable). The following WILL give you an error, because of the above reason (shown below).

Voici à quoi ça ressemble sur ma machine :

Bien ! Maintenant qu'ile st installé, regardons les bases et comment rust chaque point.

Variables

comme dans les autres langages de programmation, une variable est juste un contenant pour une valeur, quelque soit le type. Dans rust, toutes les variables ont des types (plus plus tard). Quand nous programmons, nous faisons simplement référence à la variable par son nom.

Dans Rust, les affectations aux variables sont préfixées par le mot « let ». Par exemple, : let my_box = 1; Aussi, quand vous assignez une valeur à une variable (quand vous la déclarez), vous ne pouvez pas changer sa valeur (elle immutable). Ce qui suit vous DONNERA une erreur, pour la raison ci-dessus (voir ci-dessus).

We will cover more later, but for now, just know about this in Rust. The command ‘cargo run’, will simply tell you that it is immutable. Rust is supposed to be error resistant, so it assumes that if you don’t explicitly tell it that a variable can change, it can’t. Okay… How do we do that? With the ‘mut’ keyword, example: let mut my_num = 1; Just by simply adding that “mut”, the error is gone and our program compiles (shown bottom right). Remember I said all variables in Rust have a type? Well, Rust figures out the type in the background for you. This does not mean Rust type-casts your variable sweaty_shopowner as ‘sleazy’, rather as a string. Should Rust get it wrong, or you are a masochist, simply add a colon after the variable name and the type thereafter.

Nous en parlerons plus tard, mais, pour le moment, sachez juste cela sur Rust. La commande « cargo run » vous dira juste qu'elle est immutable. Rust est supposé etre résistant aux erreurs ; aussi, il considère que si vous vous ne lui dites pas explictement qu'une variable peut changer, elle ne le pourra pas. Bon… Comment le faire ? Avec le mot-clé « mut ». Exemple : let mut my_num = 1;

Simplement en ajoutant ce « mut », l'erreur disparaît et votre programme se compile (voir en bas à droite).

Vous souvenez-vous que j'ai dit que toutes les variables dans Rust ont un type ? Eh bien, pour vous, Rust indique le type en arrière-plan. Ça ne signifie pas que Rust inscrit en dur le type de votre variablesweaty_shopowner comme « louche », mais plutôt comme une chaîne de caractères (string). Que Rust se trompe ou que vous soyez masochiste, ajoutez simplement un deux-points derrière la variable suivi du type.

Example: let my_shoesize: i32 = 13; Next issue: we can move on to another part of Rust and discuss how Rust treats that, say loops / conditionals? (Find me on Telegram if you want something else). Now a quick word on the files and folders. Once you build or run your file, you will see a new file named “cargo.lock”. This file is automatically generated from your cargo.toml file. Be sure your details are correct in the cargo.toml file, before building. There will also be a “target” folder created. Inside will be a debug folder with lots of sub-folders. Feel free to peruse these at your leisure. There should also be an executable file with the same name as your project. Run it now to see if your rust program works. Mine does (shown top right).

The code used in this demonstration is shown right. Let’s step through it. Every Rust program needs a main function, that is: fn main() {} Inside our curly braces we have our variable assignment, that we talked about. We incremented the variable with 1, the same as num = num +1 Then println!(“”); will print anything we put between the “” (quotation marks).

What you may not know is that {} inside of the print function; it’s a place holder to plug in a value. The value we plug in is outside of the “” and after a comma. In our case, the variable, num (more on format specifiers later). If you have any questions or comments, e-mail us: misc@fullcirclemagazine.org

issue156/c_c.1587883936.txt.gz · Dernière modification : 2020/04/26 08:52 de d52fr