10
녹에 분명히 선택 사항, 이유 :녹에서 세미콜론은 선택 사항입니까? 나는이 작업을 수행 할 경우 세미콜론 이후
error: expected one of `.`, `;`, `?`, or an operator, found `let`
--> src/main.rs:3:9
|
2 | let a = 1
| - expected one of `.`, `;`, `?`, or an operator here
3 | let b = 2
| ^^^ unexpected token
:
fn fn1() -> i32 {
let a = 1
let b = 2
3
}
나는 오류를 얻을?
세미콜론을 포함하는 표현식에 대해서도 https://rustbyexample.com/expression.html을 확인할 수 있습니다. – nbro