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