Shell is the essential tool for every programmer. The more familiar you become with the available tools, the more efficient you can be with using your computer. Here’s a list of command-line tools written in Rust that aim to provide modern, often much fas… Read more
Similar
In Rust, there are several ways to turn a value into a string. In this article, we will explore a few different ways and discuss what are… (more…)
Read more »
This is the Rust course used by the Android team at Google. It provides you the material to quickly teach Rust to everyone. - GitHub - google/comprehensive-rust: This is the Rust course used by the... (more…)
Read more »
When you run a Rust program, you may be tempted to think that the first code to execute is the main function. However, this is far from the case. In this tal... (more…)
Read more »
Luckily getting starting with testing Rust code is reasonably straightforward and no external libraries are needed. cargo test will run all test code in a Rust project. Units tests are added at the… (more…)
Read more »