This is a test of structures and arrays.
struct Car {
int Make;
int Model;
bool TwoDoor;
};
struct Person {
int Age;
bool Male;
char Initial;
int Kids;
Car Vehicle;
int Weight;
int Data[4];
};
task main()
{
int x;
Person jch;
jch++;
jch.Age = 23;
jch.Kids = 4;
jch.Kids = jch.Kids + 2;
jch.Initial = 'C';
jch.Male = true;
jch.Kids = x++;
jch.Kids++;
jch.Kids *= 2;
jch.Kids--;
jch.Vehicle.Make = 10;
jch.Vehicle.Model = 20;
jch.Vehicle.TwoDoor = false;
jch.Weight = 270;
}