/components/plotfunction/demo/expression/exprdemo.lpr

http://github.com/graemeg/lazarus · Unknown · 20 lines · 15 code · 5 blank · 0 comment · 0 complexity · f6f2f99404bfe405f1a7535852e6e4fc MD5 · raw file

  1. program exprdemo;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}{$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}{$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Forms
  9. { you can add units after this }, frmmain;
  10. {$R *.res}
  11. begin
  12. Application.Initialize;
  13. Application.CreateForm(TMainForm, MainForm);
  14. Application.Run;
  15. end.