A bit of Compiler911 source code

program Compiler_911;

uses
  High_Level_Optimizer,
  Assembler_Optimizer,
  Code_Protection,
  Source_Beautifier,
  Programer_Headache_Remover,
  Good_Luck_Unit;

const
  MagicWord = EA7B;
  BuildNo = '0.2009.2.3';
  BuildDate = '04/24/2009';

begin
  SayHelloToDearUser(GetUserHandle);
  GetSourceCode(Source);
  OptimizeAndProtect(Source);
  if NeedBeautify() then
    Beautify(Source);
  Compile(Source, OutPutFileName);
end.