ethos/tests/bool.ethlang
2026-03-11 11:44:55 +01:00

9 lines
106 B
Plaintext

fn main()
{
let my_bool = false;
let my_other_bool: bool = true;
let cond: bool = 1 == 2;
}