7 lines
87 B
Lox
7 lines
87 B
Lox
if (true) {
|
|
print "first is true!";
|
|
}
|
|
|
|
if (false) {
|
|
print "second if false!";
|
|
} |