mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-07 04:18:04 +08:00
18 lines
235 B
Rust
Executable File
18 lines
235 B
Rust
Executable File
// ANCHOR: here
|
|
#[derive(Debug)] // 这样可以立刻看到州的名称
|
|
enum UsState {
|
|
Alabama,
|
|
Alaska,
|
|
// --snip--
|
|
}
|
|
|
|
enum Coin {
|
|
Penny,
|
|
Nickel,
|
|
Dime,
|
|
Quarter(UsState),
|
|
}
|
|
// ANCHOR_END: here
|
|
|
|
fn main() {}
|