Repository URL to install this package:
|
Version:
3.0.0 ▾
|
unit tval2;
{$mode fpc}
interface
function TestAllval2 : boolean;
implementation
uses
tvalc;
type
IntegerType = dword;
{$i tval.inc}
function TestAllval2 : boolean;
begin
Writeln('Test val for dword type');
TestAllval2:=TestAll;
end;
end.