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