fn main() {
println!("Hello, world!");
}
- The Rust Programming Language - The Rust Programming Language
- Introduction - Rust By Example
- Introduction - The Cargo Book
- Tour of Rust - Let's go on an adventure!
- はじめに - AtCoderコンテストにRustで参加するためのガイドブック
cargo new --bin my_project
[workspace]
members = [
"my_project"
]
cargo run -p my_project