The_Unbeliever
Honorary Master
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
Programming is very rusty, have to start from the beginning!
So, where do I get Lazarus/Delphi n00b programming guides?
TIA
Ook
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!
So, where do I get Lazarus/Delphi n00b programming guides?
TIA
Ook