program tcp_gui_server; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, umain, server_unit, calculator, calculator_imp, calculator_binder; begin Application.Initialize; Application.CreateForm(TfMain, fMain); Application.Run; end.