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