Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/Pascal Script for Delphi/Import/rectest.rops
2010-01-29 16:17:43 +00:00

11 lines
168 B
Plaintext

Program IFSTest;
type
TMyRec = record a: Integer; b: string; end;
var
s: TMyRec;
Begin
s.a := 1234;
s.b := 'abc';
writeln(s.b);
writeln(inttostr(s.a));
End.