mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 13:13:46 +02:00
9 lines
180 B
ObjectPascal
9 lines
180 B
ObjectPascal
{$UNITPATH ../../rtl/linux}
|
|
{$INCLUDEPATH ../../rtl/unix;../../rtl/inc;../../rtl/unix;../../rtl/sparc}
|
|
PROGRAM SparcTest;
|
|
CONST
|
|
s:STRING='Hello World!';
|
|
BEGIN
|
|
WriteLn(s);
|
|
END.
|