trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-08-boolean/src/main.rs
Sefank 7090f728ec
Update listing code in ch03
Signed-off-by: Sefank <12670778+Sefank@users.noreply.github.com>
2022-07-04 10:48:13 +08:00

6 lines
91 B
Rust
Executable File

fn main() {
let t = true;
let f: bool = false; // with explicit type annotation
}