mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 07:28:09 +02:00
19 lines
241 B
ObjectPascal
19 lines
241 B
ObjectPascal
{$mode delphi}
|
|
|
|
type
|
|
THyperPuperText = class
|
|
Procedure Hyper; OVERLOAD;
|
|
Procedure Hyper(n: integer); OVERLOAD;
|
|
end;
|
|
|
|
Procedure THyperPuperText.Hyper(n: integer);
|
|
begin
|
|
end;
|
|
|
|
Procedure THyperPuperText.Hyper;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|