_________________________________________________________________________________________________________
Set Types
___________________________________________________________________
Each of the elements of SetType must be of type TargetType. TargetType can be any ordinal type with a range between 0 and 255. A set can contain maximally 255 elements. The following are valid set declaration:
Type Junk = Set of Char; Days = (Mon, Tue, Wed, Thu, Fri, Sat, Sun); WorkDays : Set of days; |
WorkDays := [ Mon, Tue, Wed, Thu, Fri]; |
|