shithub: rgbds

ref: 714d39c86ff4115f9d1a413bfd0ef41bc5f6353f
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