joeGrammar
Programmer
Can anyone tell me why this is not ok and what I have to do to make this initialization work? I'm more of a C guy
type
TPart = record
name: String;
size: Integer;
dt: Integer;
end;
const
cpha30_11: array[0..2] of TPart = (
('A0101', 6, 0),
('A0203', 2, 0),
('A0303', 2, 1)
}
type
TPart = record
name: String;
size: Integer;
dt: Integer;
end;
const
cpha30_11: array[0..2] of TPart = (
('A0101', 6, 0),
('A0203', 2, 0),
('A0303', 2, 1)
}