On 16 Dec 2002 at 7:58, CBFalconer wrote:
[...]
Program ml4; Var Magic:Integer;
begin Magic:=Ord('A')-Ord('a'); end.
The fix is trivial but it used to compile under gpc and has previously worked with two other Pascal compilers.
Am I missing something? How can you 'fix' such a failure?
I guess what he meant by "fix" was a "workaround" - viz,
Var a, b : integer; begin a := Ord ('A'); b := Ord ('a'); Magic := a - b; end.
Best regards, The Chief --------- Prof. Abimbola Olowofoyeku (The African Chief) Web: http://www.bigfoot.com/~african_chief/