lazarus/components/PascalScript/Samples/Import/rectest.rops
martin b65dc1ef59 Adding PascalScript from REM Objects
git-svn-id: trunk@38401 -
2012-08-27 11:02:51 +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.