Learned how to install Rust at my machine, actually is pretty simple.
After that, I started a new project using Cargo, the Rust dependency/project manager, very similar to Composer for PHP. Then I started to actually "code". First I have used the println!
function, which prints out whatever yout need, then I saw variables and primitive types.
Learned some string methods, Rust has a difference between char
and string
which char has just one byte. There's a lot of helpful string methods. Also learned about tuples. They are groups of mixed type values.
- Rust Crash Course - https://www.youtube.com/watch?v=zF34dRivLOw&t=1171