/**
* Christmas is coming and I have give a decent gift since I met you,
* so I write some codes to celebrate the special Day we met, and also for commemoration.
*/
Boy i = new Boy("Min Ou");
Girl u = new Girl("Lulu Zhang");
// July 6, 2015, The first time I met you.
i.Met(u);
// July 31, 2015, The first lunch .
i.HaveLunchWith(u);
// Luckily, you accepted and became my girlfriend on 30 Aug.
u.accepted();
// Since then, I miss u every day.
i.miss(u);
// And take care of u and our love.
i.takeCareOf(u);
// You say that you won't be so easy to marry me.
// So I keep waiting and I have confidence that you will.
boolean isHesitate = true;
while (isHesitate) {
i.waitFor(u);
// I think it is an important decision
// and you should think it over.
isHesitate = u.thinkOver();
}
// After a romantic wedding, we will live happily ever after.
i.marry(u);
i.liveHappilyWith(u);
Lulu Zhang, I have fallen in love with you for
Love u forever and ever.
- Owen Ou