myInteger INT;
myString CHAR(50);
You can find a complete list of primitives in Primitive data types. See Commonly used primitives for the primitives you are most likely to work with.
Record myCustomerRecord type BasicRecord
customerNumber INT;
customerFirstName STRING;
customerLastName STRING;
customerBalance FLOAT;
end
This record has four fields: one integer, two strings,
and one floating-point number. These fields could just as easily be
dataItems or other records.myVariable1 INT;
myVariable2 myDataItemPart;
myVariable3 myRecordPart;