program LazFuckIDE; {$mode objfpc}{$H+} uses {$IFDEF UNIX}//{$IFDEF UseCThreads} cthreads, //{$ENDIF} {$ENDIF} Interfaces, // this includes the LCL widgetset Forms, UMainForm, UBrainFuck, UInterpreterForm, UApplicationInfo, UCompiledForm, UOptionsForm, ULastOpenedList, URegistry, CoolTranslator, Common, TemplateGenerics, UCompiler, UCompilerDelphi, UCompilerPHP { you can add units after this }; {$R *.res} begin Application.Title:='LazFuck IDE'; RequireDerivedFormResource := True; Application.Initialize; Application.CreateForm(TMainForm, MainForm); Application.CreateForm(TInterpreterForm, InterpreterForm); Application.CreateForm(TCompiledForm, CompiledForm); Application.CreateForm(TOptionsForm, OptionsForm); Application.Run; end.