shithub: rgbds

ref: bbe28faab4f6dce29fe820450c425d255546cfbb
dir: /test/asm/elif-after-else.asm/

View raw version
if 0
	println "zero"
else
	println "one"
	if 1
		println "A"
	else
		println "B"
	elif 2
		println "C"
	else
		println "D"
	endc
elif 2
	println "two"
else
	println "three"
endc