mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-07 15:40:46 +01: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.
|