zlox/samples/ch23_if.lox

7 lines
87 B
Plaintext
Raw Normal View History

if (true) {
print "first is true!";
}
if (false) {
print "second if false!";
}