shithub: rgbds

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