Blitz3D+ Module sample ====================== Run source_main.bb in Extended mode to compile and execute a source Module. To exercise explicit precompilation from a command prompt in this directory: mkdir objects\Sample blitzcc --mode extended --emit-module -o objects\Sample\Math.b3m math.bb blitzcc --mode extended --module-path objects precompiled_main.bb For a portable debug object, add -d to both commands. The object carries its source/Include closure for debugger source tabs and is stored separately from Release cache entries. The .b3m file is target-specific. Emit it separately with the Win32 and Win64 compiler distributions when both targets are required. Imported source Modules also use the compiler-managed cache automatically; add --module-stats to see the cold/warm build counts.