mclangc/tests/parser/if-statements.mcl

19 lines
76 B
Plaintext
Raw Normal View History

if i > 3 {
}
if 1 {
} else {
}
if 1 {
} else if a > 3 {
} else {
}