fpc/tests/webtbs/tw7262.pp
florian 6791f7caea * test
git-svn-id: trunk@5881 -
2007-01-11 10:48:27 +00:00

11 lines
177 B
ObjectPascal

{ %OPT=-O2 }
{$MODE ObjFpc}
function IsPos(const v:Double):Boolean;
begin
Result := (PChar(@v)+6)^ > #0;
end;
begin
WriteLn(IsPos(23));
end.