Skip to content

Commit

Permalink
starter update
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodesdev committed Jun 9, 2024
1 parent b52cf40 commit 28caa2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions challenges/mutable-variables/src/starter.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub fn mutating_variables() -> String {
// Declare a mutable variable `text` and assign it the value "hello"
// 1. Declare a mutable variable `text` with any value

// Reassign the value of `text` to "bye"
// 2. Reassign the value of `text` to a new value

// Return the final value of `text`
// 3. Return the value of `text`
}

0 comments on commit 28caa2a

Please sign in to comment.