fpc/ide/text/test2.pas
pierre e10e79b38e + added col info in MessageItem
+ grep uses HighLightExts and should work for linux
1999-02-22 11:29:36 +00:00

30 lines
341 B
ObjectPascal

{$L+}
unit Test2;
interface
type
PRecord = ^TRecord;
TRecord = record
Field1: longint;
Next : PRecord;
end;
function IsOdd(X: integer): boolean;
implementation
function IsOdd(X: integer): boolean;
var Z: byte;
begin
Z:=0;
X:=Z*X*Test8087;
IsOdd:=(X mod 2)=1;
end;
procedure static;
begin
end;
END.