diff options
| author | apogeeoak <59737221+apogeeoak@users.noreply.github.com> | 2022-02-04 19:27:42 -0500 |
|---|---|---|
| committer | apogeeoak <59737221+apogeeoak@users.noreply.github.com> | 2022-02-04 19:27:42 -0500 |
| commit | c1f35e46dffc63e1c8660b8e1fc91e9a9fca3e39 (patch) | |
| tree | 6d25f2fcd6e0de9d09f588ae33f7017c34cd31c9 /exercises/variables/variables5.rs | |
| parent | f78c48020830d7900dd8d81f355606581670446d (diff) | |
| parent | cd2b5e8e3b616e769d2c17df45f813772aa81530 (diff) | |
Merge branch 'main' into text
Diffstat (limited to 'exercises/variables/variables5.rs')
| -rw-r--r-- | exercises/variables/variables5.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/variables/variables5.rs b/exercises/variables/variables5.rs index da37ae9..175eebb 100644 --- a/exercises/variables/variables5.rs +++ b/exercises/variables/variables5.rs @@ -4,7 +4,7 @@ // I AM NOT DONE fn main() { - let number = "T-H-R-E-E"; + let number = "T-H-R-E-E"; // don't change this line println!("Spell a Number : {}", number); number = 3; println!("Number plus two is : {}", number + 2); |
