pascalscript/Samples/Import/rectest.rops

11 lines
168 B
Plaintext
Raw Normal View History

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.