value struct myStruct
{
int myInt;
};

union myUnion
{
myStruct iShareMyMemory;
myStruct meToo;
};