Include



Include
Smart pascal source code
--------// include.inc //------------ PrintLn('Hello include!'); ------------------------------------- WriteLn('before include'); {$INCLUDE 'include.inc'} WriteLn('after include'); {<<< RESULT - CONSOLE LOG >>> ----------------------------- before include Hello include! after include ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}