mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
507 B
32 lines
507 B
#[derive(Debug)]
|
|
enum UsState {
|
|
Alabama,
|
|
Alaska,
|
|
// --snip--
|
|
}
|
|
|
|
enum Coin {
|
|
Penny,
|
|
Nickel,
|
|
Dime,
|
|
Quarter(UsState),
|
|
}
|
|
|
|
// ANCHOR: here
|
|
fn value_in_cents(coin: Coin) -> u8 {
|
|
match coin {
|
|
Coin::Penny => 1,
|
|
Coin::Nickel => 5,
|
|
Coin::Dime => 10,
|
|
Coin::Quarter(state) => {
|
|
println!("State quarter from {:?}!", state);
|
|
25
|
|
}
|
|
}
|
|
}
|
|
// ANCHOR_END: here
|
|
|
|
fn main() {
|
|
value_in_cents(Coin::Quarter(UsState::Alaska));
|
|
}
|