blob: 55cef222f3f405dad33bd5e0bdaa5832d1f5e718 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{$mode objfpc}{$H+}
uses SysUtils;
function Func1( Args :array of string ) :string;
begin
WriteLn('project2 Arg0-'+Args[0] +' Arg1-'+Args[1]);
if (Args[0]='1') and (Args[1]='2') then
Result := 'Ok'
else
Result := 'Err';
end;
var
Int1, Int2 :integer;
s : string;
begin
Int1 := 1;
Int2 := 2;
s:=Func1( [ IntToStr(Int1), IntToStr(Int2)] );
writeln(s);
if s<>'Ok' then
halt(1);
end.
|