Rust Variable

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2022 Jun 20 1:15
Editor
Edited
Edited
2022 Jun 20 7:3
Refs
Refs

const SCREAMING_SNAKE_CASE

let snake_case

Rust는 99% 확률로 여러분의 변수의 자료형을 유추할 수 있습니다.
유추가 불가능한 경우, 여러분의 변수 선언에 자료형을 추가해도 됩니다.
  • variable shadowing - 동일한 이름의 변수에 여러번 값을 할당할 수 있다
  • mutable - mut
  • immutable - read only
Rust Variable Notion
 
 
 
 
 
 
 
 

Recommendations