Tento příkaz se používá k definování proměnných. Používat lze tyto standardní typy:
Příklad:
dim A, B, C : Byte;
dim S : String[50];
dim S1 : StringZ;
dim Ch (10,10,5) : Char;
dim F : File;
dim X, Y, Z (100) : Integer { jako: dim X (100) : Integer
dim Y (100) : Integer
dim Z (100) : Integer }
Nelze: dim X(5), Y(10), Z : Integer;
Podívejte se na: Deklarace