Peter,
Thank you for your help, first with the binary installation on RedHat 4.2 (which failed), then with compiling gpc (which worked after an aborted start :-)
I now have the 971001 beta (2.7.2.3) running and compiling some simple programs. But I still have a ways to go. This code, which compiled previously, fails now with a message that there is an undeclared identifier `Ch' in function Isalphanum on line 17.
Any help will be appreciated immensely.
Tom
***-------------------------------------*** module charbug interface;
export charbug = (IsAlphaNum);
function IsAlphaNum (ch : char) : boolean; (* Returns TRUE if ch is a letter: (A..Z, a..z) *) (* or a digit: (0..9) *) (* Returns FALSE otherwise *)
end.
module charbug implementation;
function IsAlphaNum; begin IsAlphaNum:= ch in ['A'..'Z','a'..'z','0'..'9']; end;
end.
Thomas S. Dye, Ph.D. Home: 813 16th Avenue, Honolulu, Hawaii 96816. Voice (808) 734-2087. Work: International Archaeological Research Institute, Inc., 949 McCully St., Suite 5, Honolulu, Hawaii 96826. Voice (808) 946-2548; Fax 943-0716.