shithub: rgbds

ref: a81d383f752e3c1a38f79d13bd31486a04261895
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