Componentes.Terceros.RemObj.../official/5.0.23.613/Pascal Script for Delphi/Samples/Import/importtest.rops

16 lines
188 B
Plaintext

Program IFSTest;
var
a,b :string;
Begin
a := 'test: ';
b := ImportTest('1', 2, 3, 4, a);
writeln(b);
writeln(a);
{
Output should be:
1 2 3 4 - OK!
1 2 3 4 - OK! - OK2!
}
End.