Files
lila/examples/and_or_not.lila
2024-03-08 17:38:53 +01:00

7 lines
85 B
Plaintext

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