Did you know the Rust programming language's mascot is a cute little crab named Ferris? 🦀 Ferris is often depicted with a graduation cap, symbolizing the language's "safe" memory management! #RustLang#FerrisTheCrab#programmingtricks
Guys follow me for learning Rust as it would gimme more energy to do it everyday.
Will post a fun tweet that will make you know more about the Rust programming language.
#programmingtricks#Coding#CodingJourney
Rust Day - 1 thread - (1/n)
What is Rust for?
We all know that C and C is the boss of the low level programming language. Many and many low latency applications, Hardware level codes and even the whole linux operating system is made up from this language.
But if everything is this good why do we need Rust for? Where does it fit?
🧩 Grouping data in Java 8 just got easier! Discover the magic of Collectors.groupingBy() for multi-field grouping in Streams. Don't miss out! #JavaDev#ProgrammingTricksbuff.ly/33egCv2
#ProgrammingTricks
2/ Use 'as const' to Create Immutable Literal Types 🧱
Example 👇
```typescript
const user = {
name: 'John',
age: 30,
} as const;
// Type of 'user' is { readonly name: 'John', readonly age: 30 }
```