mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
18 lines
322 B
ObjectPascal
18 lines
322 B
ObjectPascal
{$macro on}
|
|
var
|
|
i: int32;
|
|
|
|
begin
|
|
i := 0;
|
|
{$include iw39912.inc} {$include iw39912.inc} {$include iw39912.inc}
|
|
|
|
{$define debugln := writeln}
|
|
debugln('i = ', i, ' (will be printed; must be 3).');
|
|
if i<>3 then
|
|
halt(1);
|
|
|
|
{$define debugln := //}
|
|
debugln('i = ', i, ' (will not be printed).');
|
|
debugln halt(1);
|
|
end.
|