zlox/samples/ch23_if_else.lox

13 lines
179 B
Plaintext
Raw Permalink Normal View History

var a = 1;
if (a == 1) {
print "first is true!";
} else {
print "first is false!";
}
if (a == 2) {
print "second is false!";
} else {
print "second is false!";
}