shithub: rgbds

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