shithub: rgbds

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