Datatype: verschil tussen versies

Verwijderde inhoud Toegevoegde inhoud
→‎Primitief type: decimal is in de meeste talen niet fixed point
→‎Structure, record en tupel: indentering in voorbeelden
Regel 88:
<syntaxhighlight lang="pascal">
type
t = record
a: integer;
b: char
end;
</syntaxhighlight>
 
Regel 100:
<syntaxhighlight lang="pascal">
type
t1 = record
a1: integer;
b1: char
end;
t2 = record
a2: integer;
b2: char
end;
</syntaxhighlight>
 
Regel 114:
<syntaxhighlight lang="pascal">
var
v1, v2: t1;
v3: t2;
begin
v1.a1 := 3;
v1.b1 := 'z';
v2 := v1;
v3 := v1;
end.
</syntaxhighlight>