shithub: rgbds

ref: 646fc62b89f10a9de203d3989a7e9a140557f88f
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