12 lines
149 B
Rust
12 lines
149 B
Rust
|
|
fn main()
|
|
{
|
|
let my_bool = false;
|
|
let my_other_bool: bool = true;
|
|
|
|
let cond: bool = 1 == 2;
|
|
}
|
|
|
|
// vim: syntax=rust commentstring=//\ %s
|
|
|