mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-25 05:42:18 +08:00
9 lines
94 B
Rust
9 lines
94 B
Rust
|
// ANCHOR: here
|
||
|
enum List {
|
||
|
Cons(i32, List),
|
||
|
Nil,
|
||
|
}
|
||
|
// ANCHOR_END: here
|
||
|
|
||
|
fn main() {}
|