mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
11 lines
125 B
ObjectPascal
11 lines
125 B
ObjectPascal
Program Test;
|
|
|
|
type
|
|
myenum = (YES,NO,MAYBE);
|
|
var
|
|
myvar:set of myenum;
|
|
Begin
|
|
Include(myvar,Yes);
|
|
Exclude(myvar,No);
|
|
end.
|