<tutorialjinni.com/>

Rust Introduction

Posted Under: Programming on May 17, 2022
Rust Introduction
Rust is a systems programming language pursuing the trifecta: safety, which is guaranteed at compile time; fearless concurrency, which is a lot easier when things are safe; and blazingly fast speed due to zero-cost abstractions and other nice things.

Rust Error Handling

Posted Under: Programming on Oct 17, 2021
Rust Error Handling
Exceptions or Errors (in rust) is a state of a program when a piece of code does not execute as it should. It may be due to a resource that should be available at this time but is not.

Rust Dynamic Array - Vectors

Posted Under: Programming on Sep 30, 2021
Rust Dynamic Array - Vectors
Arrays in Rust are not dynamic, array size and type of data it will hold need to be defined before compilation. Vector are the dynamic arrays in Rust.

Arrays in Rust

Posted Under: Programming on Sep 29, 2021
Arrays in Rust
Array is collection of same type items. Arrays in Rust are different from other programming languages because they must contain a predetermined number of values.

Rust Loops

Posted Under: Programming on Sep 28, 2021
Rust Loops
Loops is a way to execute a portion of code again and again to meet a certain objective. Rust provides different looping functionalities for different situations and settings.