/**
* We met each other since the year 2014.
* I don't remember very well,
* so I write some code to record our story.
*/
Boy i = new Boy("Liam");
Girl u = new Girl("Sophia");
// Feb. 13, 2015, I told you I love you.
i.love(u);
// Luckily, you accepted and became my girlfriend eversince.
u.accepted();
// Since then, I miss u every day.
i.miss(u);
// And take care of u and our love.
i.takeCareOf(u);
// You said 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();
}
// Eventually, we made the decision and you are not hesitate any longer.
i.marry(u);
i.liveHappilyWith(u);
Sophia, I've been fallen in love with u for
In the rest of my life,
I'll love you forever!
--- Liam Huang