shithub: rgbds

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