shithub: rgbds

ref: 282737450582d791d93022c6ceceee29a97fc190
dir: /test/asm/skip-elif-condition.asm/

View raw version
MACRO mac
	if (\1) < 10
		println "small \1"
	elif (\1) > 100
		println "large \1"
	elif (\1) / 0 == 42 ; only evaluated if neither "small" nor "large" was taken
		println "division by zero!?"
	elif syntax! error?
		println "X_X"
	else
		println "unreachable"
	endc
ENDM

	mac 2 + 2
	mac STRLEN("abcdef")
	mac 101
	mac 23