xxxxxxxxxx
import std;
struct Lady {
private int age;
int height;
float ageXHeight;
}
void main()
{
Lady p;
p.age = 20; // why can access private field here?
writeln(p.age); // why can access private field here?