About the author
Consider the following program for Delphi 8. If the dot is removed from the $DEFINE compiler directive, the code compiles, otherwise, it fails.
Why?
program
Delphi8LanguageOddities;
{$APPTYPE CONSOLE}
{.$DEFINE VAROBJ}
uses
SysUtils;
{$IF Defined(VAROBJ)}
procedure
FillChar(
var
Obj: TObject; Size:
Integer
; Ch:
WideChar
);
begin
end
;
{
$ELSE
}
FillChar(Obj: TObject; Size:
$IFEND
A: DateTime;
A := Now;
FillChar(A, SizeOf(A), #
0
.