summaryrefslogtreecommitdiff
path: root/test/if.mnml
blob: 8227ad56072a865769b100a58f9bc5c2d00294f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
if ((1 == 2) or (2 == 3)) {
	main1()
}

else if (true != false) {
	main2()
}

else {
	main3()
}