Questions tagged [freepascal]

Free Pascal is a multi-dialect, multi-platform Object Pascal compiler. Originally started to replace the retired Turbo Pascal compiler, it now attempts to follow the Delphi dialect still being developed by Embarcadero Technologies. It has compiler modes for Delphi, Turbo Pascal and Mac Pascal. It also has two modes for its own superset dialect: One mode with exceptions, classes and interfaces, and mode one without.

Free Pascal is a multi-dialect, multi-platform Object Pascal compiler. Its main focus are the Delphi and Turbo Pascal dialect, but a substantial Mac Pascal subset and a minor ISO Pascal mode exist as well.

Free Pascal is available for most common architectures and operating systems.

http://www.freepascal.org

1338 questions
-5
votes
1 answer

Why is this not working

So i have this code program test; var a, b, k, i, aux, j :integer; ok :boolean; begin write('a='); readln(a); write('b='); readln(b); if a > b then begin aux := a; a := b; b := aux; end; for i := a to b do begin …
Matei
  • 1,783
  • 1
  • 14
  • 17
-6
votes
1 answer

Need to fix this code for my pascal assignment

I was assigned a program to write. here are the instructions Problem Solving and Programming Insurance companies are interested in software that will better assist their customers based on the study carried out by the NMTRO. A trial run of the…
-8
votes
1 answer

Pascal, Delphi Linked lists

Im a newbie with linked lists but I need fast help with it. I have 2 linked lists. TOccurencyNodePtr = ^TOccurencyNode; TOccurencyNode = record Occurency : integer; Next : TOccurencyNodePtr; end; TIdentifierFoundNodePtr =…
1 2 3
89
90