home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 November
/
Chip_2002-11_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d456
/
CAJSCRPT.ZIP
/
ifps3
/
demo
/
rectest.ifps3
< prev
next >
Wrap
Text File
|
2002-04-18
|
178b
|
11 lines
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.