tasout.pp 348 B

12345678910111213141516171819202122232425262728
  1. { %CPU=i386 }
  2. {$define dummy}
  3. {$ifdef win32}
  4. {$output_format asw}
  5. {$undef dummy}
  6. {$endif win32}
  7. {$ifdef go32v2}
  8. {$output_format as}
  9. {$undef dummy}
  10. {$endif go32v2}
  11. {$ifdef linux}
  12. {$output_format as}
  13. {$undef dummy}
  14. {$endif linux}
  15. {$ifdef dummy}
  16. const
  17. x = ' this is a dummy test';
  18. {$else}
  19. uses utasout;
  20. {$endif}
  21. begin
  22. Writeln('x = ',x);
  23. end.