Code: Alles auswählen
Macro CompilerIfDef(Name,Type)
CompilerIf (Defined(Name,Type))
EndMacro
Macro CompilerIfNotDef(Name,Type)
CompilerIf Defined(Name,Type) <> #True
EndMacro
Structure Stack
*Val
*Next
EndStructure
CompilerIfNotDef(Stack,4)
Debug "Undefined."
CompilerElse
Debug "Defined."
CompilerEndIf