[Implemented] Reserved Constant: #PB_Compiler_IncludeFile
Posted: Tue May 22, 2012 4:05 pm
I wish we had this. Here are two uses I can immediately think of for it:
As it is, if we want this functionality we have to edit the library Include file to demo it.
Code: Select all
Procedure FancyLibrary(i.i)
CompilerIf #PB_Compiler_IncludeFile = #False ; example for debugging
Debug "Parameter for " + #PB_Compiler_Procedure + ": " + Str(i)
CompilerEndIf
EndProcedure
CompilerIf #PB_Compiler_IncludeFile = #False
; example to show a demo of the library in use
FancyLibrary(123)
CompilerEndIf