mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-24 02:16:27 +02:00
14 lines
148 B
ObjectPascal
14 lines
148 B
ObjectPascal
{ Old file: tbs0028.pp }
|
|
{ type enumtype = (a); writeln(ord(a)); }
|
|
|
|
type
|
|
enumtype = (a);
|
|
|
|
var
|
|
e : enumtype;
|
|
|
|
begin
|
|
writeln(ord(e));
|
|
end.
|
|
|