Rust 기초

설치 $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh Quick Hello world! // main.rs fn main() { println!("hello world") } $ rustc main.rs $ ./ma ...