mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-22 05:18:04 +08:00
18 lines
238 B
Rust
18 lines
238 B
Rust
|
// ANCHOR: here
|
||
|
#[derive(Debug)] // so we can inspect the state in a minute
|
||
|
enum UsState {
|
||
|
Alabama,
|
||
|
Alaska,
|
||
|
// --snip--
|
||
|
}
|
||
|
|
||
|
enum Coin {
|
||
|
Penny,
|
||
|
Nickel,
|
||
|
Dime,
|
||
|
Quarter(UsState),
|
||
|
}
|
||
|
// ANCHOR_END: here
|
||
|
|
||
|
fn main() {}
|