mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
18 lines
256 B
ObjectPascal
18 lines
256 B
ObjectPascal
{ %norun }
|
|
|
|
program project1;
|
|
TYPE
|
|
TRTime = Record
|
|
rtDay : Integer;
|
|
end;
|
|
TTimeRange = Record
|
|
trFlags : Integer;
|
|
trTime : TRTime;
|
|
case trType : Integer of
|
|
0 : (trTime2 : TRTime);
|
|
1 : (trMinutes : Integer);
|
|
end;
|
|
|
|
begin
|
|
end.
|