Added some tests.

This commit is contained in:
Kugel Fuhr
2024-09-01 20:22:29 +02:00
parent b2aceaea24
commit cc0db26e20
6 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
.macro IncludeFile FilePath
.proc bar
.include FilePath
.endproc
.endmacro
IncludeFile "070-include-macro.inc"
.ifdef bar::foo
.out "bar::foo is defined"
.else
.out "bar::foo is undefined"
.endif