mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 11:29:16 +02:00
+ test file for tdos
This commit is contained in:
parent
b7285e1095
commit
3c2336b435
20
tests/test/units/dos/hello.pp
Normal file
20
tests/test/units/dos/hello.pp
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ Test program to be used by tdos for testing exec }
|
||||||
|
{ command. }
|
||||||
|
var
|
||||||
|
i: integer;
|
||||||
|
Begin
|
||||||
|
WriteLn('Hello world. With parameters...');
|
||||||
|
for i:=0 to paramcount do
|
||||||
|
begin
|
||||||
|
WriteLn(ParamStr(i));
|
||||||
|
end;
|
||||||
|
RunError(213);
|
||||||
|
end.
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
$Log$
|
||||||
|
Revision 1.1 2001-12-10 02:25:33 carl
|
||||||
|
+ test file for tdos
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user