I鈥檓 a software engineer very enthusiastic about Rust.
Nothing here yet.
Oct 20, 2020 路 9 min read 路 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...
Join discussion
Oct 12, 2020 路 5 min read 路 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...
AAyushi commented
Sep 26, 2020 路 11 min read 路 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...
Join discussion
Sep 18, 2020 路 6 min read 路 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 ...
MMark and 1 more commented