Typy
Typy nejsou na rozdíl od Pascalu rozšiřovatelné. Jsou to:
integer
string
real
boolean
Point
Rect
Point obsahuje X, Y: integer.
Rect obsahuje Left, Top, Right, Bottom: integer.
Poznámky
Integer a real se mezi sebou převádějí automaticky. Integer
lze přiřadit do stringu, nebo ho ke stringu přičíst - vznikne opět string.
Příklady
var s: string;
i: integer;
begin
i := 10;
s := 10;
s := s+15;
end.