mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
11 lines
140 B
ObjectPascal
11 lines
140 B
ObjectPascal
{ %fail }
|
|
{$mode extendedpascal}
|
|
type
|
|
fruits = (apple, banana, citrus);
|
|
var
|
|
a:fruits;
|
|
begin
|
|
Writeln(pred(high(a)));
|
|
ReadLn;
|
|
end.
|