We are using this IDE at school so I would like to have something similar to it.
Tried Lazarus IDE, but it seems kind of strange with all those windows everywhere.
Edit: well maybe Lazarus is not so bad, but it uses some other keywords.
Code: Select all
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs;
type
TForm1 = class(TForm)
private
{ private declarations }
public
{ public declarations }
end;
var
Form1: TForm1;
implementation
initialization
{$I unit1.lrs}
end.
but what is 'Interface' keyword for?
and what does these mean?
Code: Select all
implementation
initialization