/**
* We are both programmers,
* so I write some code to celebrate that we will marry.
*/
Boy i = new Boy("苏小保");
Girl u = new Girl("王芳梅");
// May , 2010, i meet u at xi'an.
i.meet(u);
// Sep 9, 2010, we are together.
i.love(u);
// Luckily, you accepted and became my girlfriend eversince.
u.accepted();
// Since then, I love u every day.
i.love(u);
// And take care of u and our love.
i.takeCareOf(u);
// I have nothing, i must strive to make much money for you.
// So May 18, 2012, i arrived shenzhen.
i.arrived(”shenzhen");
// So July 8, 2013, you followed me to shenzhen.
u.arrived(“shenzhen");
u.strive();
i.strive();
// We will have a romantic wedding.
i.marry(u);
// We will live happily forever.
while (true) {
i.love(u);
i.liveHappilyWith(u);
i.haveHomeWith(u);;
}
王芳梅, I have fallen in love with you for
Love u forever and ever.
- 苏小保