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

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

else {
	main3()
}