Rust Crab

Rust Documentation: Chapter 2

Programming a Guessing Game 🎲 In the previous chapter, we learned about the basics of Rust. In this chapter, we will learn about the basics of Rust by building a simple guessing game. Setting up the project We will use the Cargo package manager to create a new project called guessing_game. We can create a new project using the following command: cargo new guessing_game This creates a new project called guessing_game in the current directory....

April 18, 2023 · 13 min · Tanmay
Rust Crab

Rust Documentation: Chapter 1

What is Rust? Rust is a programming language that is designed to be safe, fast, and concurrent. It is a systems programming language that is used to build low-level software. It is a statically typed language that is compiled to machine code. It is a language that is used to build operating systems, browsers, and other low-level software. This blog post summarizes the key takeaways about the origins of Rust and its usefulness in software development MIT Technology Review: How Rust went from a side project to the world’s most-loved programming language...

April 17, 2023 · 4 min · Tanmay