19 followers
I’m a software engineer from Mexico working for the government in the education sector and I'm currently learning Rust.
Subscribe to my newsletter and never miss my upcoming articles
This article is still being written, come back later! 🙂
In this article, we'll be discussing what control flow is and how we can use it in Rust. Deciding whether or not to run some code depending on a condition and deciding to run some code repeatedly while a condition is true are basic building blocks in...
In this article, we'll be discussing what functions are and when to use them in Rust. As some of us already know, functions are "self-contained" modules of code that accomplish a specific task. Generally, functions are used to encapsulate certain pie...
In this article, we'll be discussing the various data types in Rust. Rust differs from languages like Python or JavaScript in many ways, Rust is what's known as a strongly typed language, this means that every variable must have a predefined data typ...
In the last article, we talked about how to use Cargo for Rust projects and highlighted some of its most common commands. We are now going to go further and start talking about variables and mutability. One of Rust's main features is that variables ...
In the last article, we talked about the basics to get started with Rust, we even wrote our first, very simple program. We are now going to discuss how can we use Cargo, one of the tools we talked about that comes with Rust. Cargo is Rust's package ...