1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-07-09 01:05:50 +02:00
Files
.github
dev
exercises
00_intro
01_variables
README.md
variables1.rs
variables2.rs
variables3.rs
variables4.rs
variables5.rs
variables6.rs
02_functions
03_if
04_primitive_types
05_vecs
06_move_semantics
07_structs
08_enums
09_strings
10_modules
11_hashmaps
12_options
13_error_handling
14_generics
15_traits
16_lifetimes
17_tests
18_iterators
19_smart_pointers
20_threads
21_macros
22_clippy
23_conversions
quizzes
README.md
rustlings-macros
solutions
src
tests
.editorconfig
.gitignore
.markdownlint.yml
.typos.toml
CHANGELOG.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
LICENSE
README.md
oranda.json
release-hook.sh
rustlings/exercises/01_variables/variables5.rs

9 lines
277 B
Rust
Raw Normal View History

fn main() {
2024-05-21 01:47:57 +02:00
let number = "T-H-R-E-E"; // Don't change this line
println!("Spell a number: {}", number);
2024-06-14 13:32:37 +02:00
// TODO: Fix the compiler error by changing the line below without renaming the variable.
2024-05-21 01:47:57 +02:00
number = 3;
println!("Number plus two is: {}", number + 2);
}