[Rust Guide] 3.1. Variables and Mutability

3.1.0. Before the Main Content Welcome to Chapter 3 of Rust self-study. There are 6 sections in total: Variables and Mutability (this article) Data Types: Scalar Types Data Types: Compound Types Fu...

By · · 1 min read
[Rust Guide] 3.1. Variables and Mutability

Source: DEV Community

3.1.0. Before the Main Content Welcome to Chapter 3 of Rust self-study. There are 6 sections in total: Variables and Mutability (this article) Data Types: Scalar Types Data Types: Compound Types Functions and Comments Control Flow: if else Control Flow: Loops Through the small game in Chapter 2 (beginners who haven’t read it are strongly recommended to do so), you should already have learned the basic Rust syntax. In Chapter 3, we will go one level deeper and understand general programming concepts in Rust. If you like it, please like, bookmark, and follow 3.1.1. Declaring Mutable/Immutable Variables Variables are declared using the let keyword By default, variables are immutable. The following is an incorrect example, with the error shown in the comment: fn main(){ let machine = 6657; machine = 0721; // Error: cannot assign twice to immutable variable println!("machine is {}", machine); } Add mut after let to declare a mutable variable. The following is a correct example: fn main(){ l

Related Posts

Trending on ShareHub

  1. Understanding Modern JavaScript Frameworks in 2026
    by Alex Chen · Feb 12, 2026 · 0 likes
  2. The System Design Primer
    by Sarah Kim · Feb 12, 2026 · 0 likes
  3. Just shipped my first open-source project!
    by Alex Chen · Feb 12, 2026 · 0 likes
  4. OpenAI Blog
    by Sarah Kim · Feb 12, 2026 · 0 likes
  5. Building Accessible Web Applications: A Practical Guide
    by Alex Chen · Feb 12, 2026 · 0 likes
  6. Rapper Lil Poppa dead at 25, days after releasing new music
    Rapper Lil Poppa dead at 25, days after releasing new music
    by Anonymous User · Feb 19, 2026 · 0 likes
  7. write-for-us
    by Volt Raven · Mar 7, 2026 · 0 likes
  8. Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    by Anonymous User · Feb 12, 2026 · 0 likes
    #coffee gets cold #the #time travel
  9. Best DoorDash Promo Code Reddit Finds for Top Discounts
    Best DoorDash Promo Code Reddit Finds for Top Discounts
    by Anonymous User · Feb 12, 2026 · 0 likes
    #doordash #promo #reddit
  10. Premium SEO Services That Boost Rankings & Revenue | VirtualSEO.Expert
    by Anonymous User · Feb 12, 2026 · 0 likes
  11. NBC under fire for commentary about Team USA women's hockey team
    NBC under fire for commentary about Team USA women's hockey team
    by Anonymous User · Feb 18, 2026 · 0 likes
  12. Where to Watch The Nanny: Streaming and Online Viewing Options
    Where to Watch The Nanny: Streaming and Online Viewing Options
    by Anonymous User · Feb 12, 2026 · 0 likes
    #streaming #the nanny #where
  13. How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    by Anonymous User · Feb 12, 2026 · 0 likes
    #kindle unlimited #subscription #unlimited
  14. Russian skater facing backlash for comment about Amber Glenn
    Russian skater facing backlash for comment about Amber Glenn
    by Anonymous User · Feb 18, 2026 · 0 likes
  15. Google News
    Google News
    by Anonymous User · Feb 18, 2026 · 0 likes

Latest on ShareHub

Browse Topics

#ai (4035)#news (2339)#webdev (1861)#programming (1350)#business (1120)#opensource (1053)#security (1024)#productivity (982)#prediction markets (920)#/business (770)

Around the Network