Forum: Pascal and Delphi Dec 19th, 2007 |
| Replies: 2 Views: 914 I think it's something like this
program ??;
var test : array[0..4] of String;
l : Integer;
begin |
Forum: Pascal and Delphi Nov 12th, 2007 |
| Replies: 2 Views: 4,306 Thanks for your help, this will help me out a lot. I think I've read a simular example earlier somewhere but I had totally forgot about that. |
Forum: Pascal and Delphi Nov 12th, 2007 |
| Replies: 2 Views: 4,306 Hello.
I'm studying Pascal in school atm and have come over a bit of a problem with a program I've been asked to write.
The task is too make a calendar. My calendar uses an array with records... |
Forum: Pascal and Delphi Nov 12th, 2007 |
| Replies: 4 Views: 1,332 This program will generate a random number between -20 and 20.
program RandomX;
var x : Integer;
begin
Randomize; |