mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 17:22:35 +02:00
14 lines
215 B
ObjectPascal
14 lines
215 B
ObjectPascal
{ %OPT=-glhc }
|
|
{ Source provided for Free Pascal Bug Report 3661 }
|
|
{ Submitted by "Martin Schreiber" on 2005-02-16 }
|
|
{ e-mail: }
|
|
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
uses
|
|
Classes;
|
|
|
|
begin
|
|
writeln('abc');
|
|
end.
|