astroCalc/astroCalc.lpr
Martin Putzlocher ac804b116e The first commit.
Enthaltene Umrechnungen:
- Leuchtkraft zu absoluter Helligkeit
- absolute Helligkeit zu Leuchtkraft
2022-02-05 21:54:26 +01:00

23 lines
388 B
ObjectPascal

program astroCalc;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Unit1
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.