First tutorial on Lazarus
May 18, 2008Lazarus is a superb programming tool right now, created based on Free Pascal, this software seems to be already battle proven. There are many commercial softwares created by lazarus.
I will show the first tutorial for Lazarus. First enter a button into Form1. Click 2X on the button so you’ll enter the coding window. Enter this code.
procedure TForm1.Button1Click(Sender: TObject);
begin
showmessage(’Hellow’);
end;
Execute the program, click the button:

Although lazarus is great, but it has no syntax autocomplete (intellisense) yet. But i bet this great tool will be great in the future..
