A Quick Introduction to Basic Rust - 01

Data Types Note: Rust is a statically typed language. This means that the type of a variable must be known at compile time. This is in contrast to dynamically typed languages like Python, where the type of a variable is determined at runtime. bool: A boolean value that can be either true or false let is_true: bool = true; char: A single Unicode character. let c: char = 'a'; i8, i16, i32, i64, i128: Signed integers with different sizes let x: i32 = -69; u8, u16, u32, u64, u128: Unsigned integers with different sizes let x: u32 = 420; f32, f64: Floating-point numbers with different precisions....

March 6, 2023 · 5 min · Hamza Khalid

Rust on Docker Dev Container - 00

Hi 👋, My name is Hamza and this is my first blog post. The reason for this blog post is to document my journey of learning Rust. I have been learning rust on and off for an year now but never really got to doing something with it because i always end up using AI to write my code. this has took a tremendous toll on my learning curve and i have decided to change that....

March 5, 2023 · 2 min · Hamza Khalid