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