Files
rgbds/test/asm/interpolate-else.asm
T
Rangi 358e8fe636 Add more tests of lexer's skipToLeadingKeyword behavior (#1971)
The character after the ending keyword gets blue-painted.
2026-05-09 15:56:17 -04:00

14 lines
112 B
NASM

def hmm equs "else"
if 1
println "yes"
{hmm}
println "no"
endc
if 0
println "NO"
{hmm}
println "YES"
endc