문제
이 문제도 바로 전 문제랑 비슷한 문제다.
에러는 `x`가 초기화되지 않았다고 알려주고 있다.
풀이
소스 코드를 살펴보자
fn main() {
// TODO: Change the line below to fix the compiler error.
let x: i32;
println!("Number {x}");
}
역시 TODO 설명도 변수 선언 부분을 수정하라고 지시하고 있다.
변수에 값을 할당시켜 초기화시키면 문제를 해결할 수 있다.
다음과 같이 수정했다.
fn main() {
// TODO: Change the line below to fix the compiler error.
let x: i32 = 3;
println!("Number {x}");
}
그리고 실행하면...
성공~
'Programming Language > RUST' 카테고리의 다른 글
[Rustling] exercises/01_variables/variables5.rs 풀기 (0) | 2024.10.11 |
---|---|
[Restling] exercises/01_variables/variables4.rs 풀기 (0) | 2024.10.11 |
[Rustling] exercises/01_variables/variables2.rs 풀기 (0) | 2024.10.11 |
[Rustling] exercises/01_variables/variables1.rs 풀기 (1) | 2024.10.11 |
Rustling 시작하기 (3) | 2024.10.11 |