A hello world program on Lazarus
Lazarus is definitely a superb subsitution for delphi after the Net framework transition makes delphi no longer a good choice for programmer. i’ll give some tutorials on Lazarus. This first tutorial will allow you to create a message box on lazarus.
First, enter a button into the form1. Then the button1 will emerge on your Form1.

Then click 2X on the Button and enter this code:
procedure TForm1.Button1Click(Sender: TObject);
begin
showmessage(’Hellow’);
end;
Compile the program, click the button, you’ll see window like this:
