9 lines
106 B
Plaintext
9 lines
106 B
Plaintext
|
|
fn main()
|
|
{
|
|
let my_bool = false;
|
|
let my_other_bool: bool = true;
|
|
|
|
let cond: bool = 1 == 2;
|
|
}
|