How I learn Rust

From my observation, Rust is a really popular language in not only blockchain but also areas such as gaming where high performance is required. Many of my favourite projects are written in Rust, and it is frustrating when I can’t understand the language… ๐Ÿฅฒ This is also my main driving force to study Rust.

I came across few resources on the Rust official site. Making sure that I subscribe to official updates and newsletters. Another source I follow is the Rust in Blockchain site, they also occasionally update their blog which is very helpful to catch up with blockchain-related Rust projects.

Rust - Most Loved Language!

โœ… Speed โœ… Safety โœ… Come with Cargo Manager โœ… Come with Error Messages โœ… Efficient C Binding โœ… Treads without Data Races

I am currently going through Easy Rust’s tutorials. It is fantastic so far! I love how David Macleod explains Rust in a very detailed way. I am sure you will like it as well! His tutorials are available on Youtube. If you prefer reading, you can check out his book here.

My planning after the Easy Rust tutorials:

fn main() {
    println!("Hello World!");
}

P.S. The best way to learn is to get your hands dirty.