Learning Lazarus

The_Unbeliever

Honorary Master
Joined
Apr 19, 2005
Messages
103,193
Reaction score
10,233
Location
Nkaaaaandla
This coming from a guy who've used Turbo Pascal a couple of times in the DOS days to write programs.

I can write a very simple Pascal program like asking for your name and birthday, and displaying it

eg

Code:
Program NameandAge;

Var
        Name : String;
        Age : Integer;

Begin
        Writeln('Well, hello there. What is your name?');
        Readln(Name);
        Writeln('And your Age?');
        Readln(Age);
        Writeln('Welcome ', Name,' aged ', Age ,' years old');
        Readln;
End.

Programming is very rusty, have to start from the beginning! :o

So, where do I get Lazarus/Delphi n00b programming guides? :o

TIA

Ook
 
First question is why? C# is pretty close to Delphi, syntactically, and java is pretty similar too, both of which are better options
 
Its used quite a lot in universities and coledges so there are quite a few decent delphi books which take you through it. The wiki has plenty of info but its not as nice to work through as a good book : http://wiki.freepascal.org/Lazarus_Documentation

I would also recommend C# though as its much more common with much more examples and free guides but either will get the job done.
 
Any good C# tutorials and primers then?

FWIW - Also did a C course back in the days, most of it is all but forgotten... :o
 
Top
Sign up to the MyBroadband newsletter
X