mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-07 04:18:04 +08:00
6 lines
91 B
Rust
Executable File
6 lines
91 B
Rust
Executable File
fn main() {
|
|
let t = true;
|
|
|
|
let f: bool = false; // with explicit type annotation
|
|
}
|