home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 December
/
Chip_2001-12_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d23456
/
CAJSCRTP.ZIP
/
demo_del
/
withtest2.ifs
< prev
Wrap
Text File
|
2001-07-24
|
169b
|
10 lines
type
tmyrecord = record v1,v2: integer; end;
var
x : tmyrecord;
begin
x.v1 :=123;
x.v2 := 321;
with x do
writeln(inttostr(v1)+' '+inttostr(v2));
end.