mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 09:08:03 +02:00
11 lines
79 B
ObjectPascal
11 lines
79 B
ObjectPascal
type
|
|
enumtype = (a);
|
|
|
|
var
|
|
e : enumtype;
|
|
|
|
begin
|
|
writeln(ord(e));
|
|
end.
|
|
|