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

23 lines
296 B
ObjectPascal

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