program AnonymousThread; {$APPTYPE CONSOLE} {$R *.res} uses Classes, Quick.Commons, Quick.Console, System.SysUtils, Quick.Threads; begin try ReportMemoryLeaksOnShutdown := True; TAnonymousThread.Execute( procedure var i : Integer; begin for i := 0 to 10 do cout('Working %d',[i],etTrace); cout('executed thread',etSuccess); end) .OnTerminate( procedure begin cout('terminated thread',etSuccess); cout('PRESS TO EXIT',etInfo); end) .Start; ConsoleWaitForEnterKey; except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; end.