Subranges
A subrange declaration specifies that the value of any data element of that type is restricted between and including the specified upper and lower limits.Subranges can be declared using the following syntax:TYPE : ( .. );END_TYPEFor a concrete example consider the following declaration:TYPEint_0_to_100 : INT (0..100);END_TYPE