lazarus/components/PascalScript/Samples/Import/importtest.rops
martin b65dc1ef59 Adding PascalScript from REM Objects
git-svn-id: trunk@38401 -
2012-08-27 11:02:51 +00:00

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.