fpc/tests/tbs/tb0024.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

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.