So long, we have covered a handful of fundamental topics about programming in Rust. Some of these topics are variables, mutability, constants, data types, functions, if-else statements and loops. In the final chapter of the Rust Basics series, let us now write
Read More

Like any modern programming language, Rust too has functions. The function that you are already familiar with is the main function. This function gets called when the program is launched. But what about other functions? In this article, you’ll learn to use
Read More

In the first chapter of the series, I shared my thoughts on why Rust is an increasingly popular programming language. I also showed how to write Hello World program in Rust. Let’s continue this Rust journey. In this article, I shall introduce
Read More