Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/BP-HILFE/ORD.PAS
2001-11-30 12:14:44 +01:00

15 lines
267 B
Plaintext
Raw Blame History

{Ord.PAS}
{Beispielcode f<>r die Funktion Ord }
uses Crt;
type
Colors = (RED,GREEN,BLUE);
begin
Writeln('BLUE has an ordinal value of ',
Ord(BLUE));
Writeln('The ASCII code for "c" is ',
Ord('c'), ' decimal');
end.