mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 18:08:17 +02:00
12 lines
194 B
ObjectPascal
12 lines
194 B
ObjectPascal
unit uw39677a;
|
|
{$mode Delphi}
|
|
interface
|
|
function Test(const A: Rawbytestring): Integer; overload;
|
|
implementation
|
|
function Test(const A: Rawbytestring): Integer;
|
|
begin
|
|
Writeln('a');
|
|
end;
|
|
end.
|
|
|