mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-30 10:18:01 +08:00
8 lines
138 B
Rust
Executable File
8 lines
138 B
Rust
Executable File
struct Color(i32, i32, i32);
|
|
struct Point(i32, i32, i32);
|
|
|
|
fn main() {
|
|
let black = Color(0, 0, 0);
|
|
let origin = Point(0, 0, 0);
|
|
}
|