lila/examples/and_or_not.lila

6 lines
85 B
Text

fn main() {
yes = true;
no = !yes;
impossible = yes && no;
always = yes || no;
}