mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 01:33:23 +02:00
19 lines
149 B
ObjectPascal
19 lines
149 B
ObjectPascal
unit unitdots;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
dots = record
|
|
test: char;
|
|
bar: char;
|
|
end;
|
|
var
|
|
my: boolean;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|