shithub: rgbds

ref: 04788e15af6878c220602d2248b2b8f5182e96a0
dir: /test/asm/multiple-else.asm/

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