mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-15 03:58:06 +08:00
9 lines
164 B
Rust
9 lines
164 B
Rust
fn main() {
|
|
// ANCHOR: here
|
|
let some_number = Some(5);
|
|
let some_char = Some('e');
|
|
|
|
let absent_number: Option<i32> = None;
|
|
// ANCHOR_END: here
|
|
}
|