pascalabcnet/TestSamples/Preprocessor2_Samples/Program2.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

15 lines
149 B
ObjectPascal

//uses my_unit;
{$define GO}
begin
{$ifdef PI}
{$ifndef PI}
write('a');
{$else}
writeln('else');
{$endif}
{$endif}
end.